d7df2fb571
Changes is needed because we can not make dependencies on PRs from other repositories such as zuul-airship-roles, this would allow more robust development in the stage we currently are in. When there will be less activity on gating roles will be moved back to separate repo. Change-Id: I85c9bdd47b5aaba90df5458b20c90ff5c912c05f
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
---
|
|
- block:
|
|
- name: Ensuring Libvirt, Qemu and support packages are present
|
|
become: true
|
|
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'
|
|
yum:
|
|
name:
|
|
- libguestfs-tools
|
|
- libvirt
|
|
- libvirt-devel
|
|
- libvirt-daemon-kvm
|
|
- qemu-kvm
|
|
- virt-install
|
|
state: present
|
|
- name: Ensuring Libvirt, Qemu and support packages are present
|
|
become: true
|
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
|
apt:
|
|
name:
|
|
- qemu
|
|
- libvirt-bin
|
|
- libguestfs-tools
|
|
- qemu-kvm
|
|
- virtinst
|
|
- python-lxml
|
|
- python3-lxml
|
|
- python3-libvirt
|
|
- python-libvirt
|
|
- dnsmasq
|
|
- ebtables
|
|
state: present
|
|
- name: Add user "{{ ansible_user }}" to libvirt group
|
|
become: true
|
|
user:
|
|
name: "{{ ansible_user }}"
|
|
groups:
|
|
- libvirt
|
|
append: yes
|
|
- name: Reset ssh connection to allow user changes to affect "{{ ansible_user }}"
|
|
meta: reset_connection
|
|
- name: Start libvirtd
|
|
service:
|
|
name: libvirtd
|
|
state: started
|
|
enabled: true
|
|
become: true
|
|
|