scottslowe-learning-tools/kvm/provision.yml
Scott Lowe 7a217c91e0 Add learning environment for KVM
Add Vagrantfile and supporting files to create a learning
environment for KVM and Libvirt.
2016-01-13 21:56:50 -07:00

14 lines
240 B
YAML

---
- hosts: "all"
sudo: "yes"
remote_user: "vagrant"
tasks:
- name: "Install KVM and Libvirt"
apt:
state: "present"
update_cache: "yes"
name: "{{ item }}"
with_items:
- qemu-kvm
- libvirt-bin