mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-29 21:10:20 +08:00
serial-console: only start gettys on x86_64
power and also now all our aarch64 bvmhosts shouldn't start serial getty. Only the x86_64 ones have this, so just match on them. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
name: serial-getty@ttyS0
|
||||
state: started
|
||||
enabled: true
|
||||
when: ansible_architecture != 'ppc64le'
|
||||
when: ansible_architecture == 'x86_64'
|
||||
tags:
|
||||
- serial-console
|
||||
|
||||
@@ -32,6 +32,6 @@
|
||||
name: serial-getty@ttyS1
|
||||
state: started
|
||||
enabled: true
|
||||
when: ansible_architecture != 'ppc64le'
|
||||
when: ansible_architecture == 'x86_64'
|
||||
tags:
|
||||
- serial-console
|
||||
|
||||
Reference in New Issue
Block a user