switch aarch64 rhel7.4 virthosts to use new alt packages for kvm

This commit is contained in:
Kevin Fenzi 2017-11-15 20:11:10 +00:00
parent 065d9ff801
commit 6ac39c507e

View file

@ -28,13 +28,6 @@
- rhel7-rhev-ppc64le
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version|int == 7 and ansible_architecture == 'ppc64le'
- name: install RHEV/aarch64 for el7 repo file
copy: src=rhel7-rhev-aarch64.repo dest=/etc/yum.repos.d/rhel7-rhev-aarch64.repo
tags:
- repos
- rhel7-rhev-aarch64
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version|int == 7 and ansible_architecture == 'aarch64'
- name: install libvirt packages on rhel7 virthosts
package: name={{ item }} state=present
with_items:
@ -51,6 +44,11 @@
package: name={{ item }} state=present
with_items:
- AAVMF
- qemu-kvm
- qemu-kvm-tools
- qemu-img
- libvirt
- virt-install
tags:
- packages
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version|int == 7 and ansible_architecture == 'aarch64'