openqa/worker: don't explicitly pull in ffmpeg-free on aarch64

We don't want it there - see earlier commits - but I didn't
notice it's actually explicitly listed here for all arches,
which breaks stuff on aarch64 now we told dnf to exclude it.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-06-11 11:07:53 -07:00
parent 3a60a22eee
commit 7f73f1253e

View file

@ -69,7 +69,7 @@
- name: Install required packages - name: Install required packages
package: package:
name: ['openqa-worker', 'os-autoinst', 'ffmpeg-free'] name: ['openqa-worker', 'os-autoinst']
state: latest state: latest
enablerepo: "{{ openqa_repo }}" enablerepo: "{{ openqa_repo }}"
notify: notify:
@ -99,6 +99,13 @@
user: name=_openqa-worker groups=geekotest append=yes user: name=_openqa-worker groups=geekotest append=yes
when: "openqa_static_uid is defined" when: "openqa_static_uid is defined"
- name: Install ffmpeg-free (not on aarch64)
package: name=ffmpeg-free state=present
tags:
- packages
when: "ansible_architecture is defined and ansible_architecture != 'aarch64'"
- name: Install UEFI firmware package (x86_64 only) - name: Install UEFI firmware package (x86_64 only)
package: name=edk2-ovmf state=present package: name=edk2-ovmf state=present
tags: tags: