summaryrefslogtreecommitdiffstats
path: root/roles/openqa/worker/tasks
diff options
context:
space:
mode:
authorAdam Williamson <awilliam@redhat.com>2017-07-25 17:00:10 -0700
committerAdam Williamson <awilliam@redhat.com>2017-07-25 17:00:10 -0700
commiteeef3f1aa8280cc125ac747442ea016dee9dc7cf (patch)
treed880462c427fee3518dbc9f3ad690b176d060dc2 /roles/openqa/worker/tasks
parente87463cca37cc3fa81aea6eae5fdad181674cf57 (diff)
downloadansible-eeef3f1aa8280cc125ac747442ea016dee9dc7cf.tar.gz
ansible-eeef3f1aa8280cc125ac747442ea016dee9dc7cf.tar.xz
ansible-eeef3f1aa8280cc125ac747442ea016dee9dc7cf.zip
openqa/worker: ed2k-ovmf doesn't exist on ppc
Diffstat (limited to 'roles/openqa/worker/tasks')
-rw-r--r--roles/openqa/worker/tasks/main.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/roles/openqa/worker/tasks/main.yml b/roles/openqa/worker/tasks/main.yml
index 984f26701..5cb4f31af 100644
--- a/roles/openqa/worker/tasks/main.yml
+++ b/roles/openqa/worker/tasks/main.yml
@@ -23,11 +23,16 @@
dnf: name={{ item }} state=present
with_items:
- libselinux-python
- - edk2-ovmf
- git
tags:
- packages
+- name: Install UEFI firmware package (x86_64 only)
+ dnf: name=edk2-ovmf state=present
+ tags:
+ - packages
+ when: "ansible_architecture is defined and ansible_architecture == 'x86_64'"
+
- include: nfs-client.yml
when: openqa_hostname is defined and openqa_hostname != "localhost"