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:
Kevin Fenzi 2024-12-15 10:43:27 -08:00
parent 6743920113
commit 82a3175c48

View file

@ -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