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:
parent
6743920113
commit
82a3175c48
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue