and switch aarch64 back to rhev kvm

This commit is contained in:
Kevin Fenzi 2017-11-17 00:51:24 +00:00
parent 9d60d3017a
commit 76e85ef2d8

View file

@ -28,6 +28,13 @@
- 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:
@ -44,11 +51,6 @@
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'