scottslowe-learning-tools/kvm/kvm-generic/provision.yml
Scott Lowe 38fe6805a4 Add Libvirt support
Add support for Libvirt

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2018-09-24 21:11:54 -06:00

18 lines
334 B
YAML

---
- hosts: "all"
become: "yes"
remote_user: "vagrant"
gather_facts: false
tasks:
- name: "Install Python 2"
raw: "apt-get -y -q install python"
- name: "Install KVM and Libvirt"
apt:
state: "present"
update_cache: "yes"
name: "{{ item }}"
with_items:
- qemu-kvm
- libvirt-bin