virthost: a few adjustments for aarch64 virthosts

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2022-07-12 17:05:25 -07:00
parent ad2e66cbf5
commit 1162f4f03d

View file

@ -37,7 +37,7 @@
- packages
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version|int == 7 and ansible_architecture != 'aarch64'
- name: install libvirt packages on rhel8 virthosts
- name: install libvirt packages on rhel8 or rhel9 virthosts
package: name={{ item }} state=present
with_items:
- qemu-kvm
@ -45,7 +45,7 @@
- virt-install
tags:
- packages
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version|int == 8
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version|int > 7
- name: install AAVMF uEFI tianocore on aarch64 rhel7 virthosts
package: name={{ item }} state=present
@ -67,6 +67,14 @@
- packages
when: ansible_architecture == 'aarch64'
- name: install edk2-arm for ARMv7 VMs on aarch64 rhel9 virthosts
dnf: name={{ item }} state=present
with_items:
- https://kojipkgs.fedoraproject.org//packages/edk2/20220526git16779ede2d36/3.fc36/noarch/edk2-arm-20220526git16779ede2d36-3.fc36.noarch.rpm
tags:
- packages
when: ansible_architecture == 'aarch64'
# install libvirtd.conf
#
# This provides us with the ability to use virt-manager from non root accounts.