mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-04 14:03:32 +08:00
koji_builder: don't try and run rngd on aarch64 either
It tries to start on aarch64, but fails. So, only run rngd on x86_64 Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
@@ -366,13 +366,14 @@
|
||||
tags:
|
||||
- koji_builder
|
||||
- koji_builder/rngd
|
||||
when: ansible_architecture == 'x86_64'
|
||||
|
||||
- name: Start rngd
|
||||
service: name=rngd state=started enabled=yes
|
||||
tags:
|
||||
- koji_builder
|
||||
- koji_builder/rngd
|
||||
when: ansible_architecture != 's390x' and ansible_architecture != 'ppc64le'
|
||||
when: ansible_architecture == 'x86_64'
|
||||
|
||||
- name: disable systemd-oomd we do not need or want it
|
||||
systemd: name=systemd-oomd state=stopped enabled=no masked=true
|
||||
|
||||
Reference in New Issue
Block a user