Some package naming changes
This commit is contained in:
parent
8a608531a0
commit
6cab3284fc
1 changed files with 12 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
- name: set selinux to enforcing
|
||||
selinux: policy=targeted state=enforcing
|
||||
|
||||
- name: install libvirt packages
|
||||
- name: install libvirt packages on rhel6 virthosts
|
||||
yum: pkg={{ item }} state=installed
|
||||
with_items:
|
||||
- qemu-kvm
|
||||
|
@ -12,6 +12,17 @@
|
|||
- python-virtinst
|
||||
tags:
|
||||
- packages
|
||||
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version == 6
|
||||
|
||||
- name: install libvirt packages on rhel7 virthosts
|
||||
yum: pkg={{ item }} state=installed
|
||||
with_items:
|
||||
- qemu-kvm
|
||||
- libvirt
|
||||
- virt-install
|
||||
tags:
|
||||
- packages
|
||||
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version == 7
|
||||
|
||||
# install libvirtd.conf
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue