kvm-host: Initial version of role

This commit is contained in:
Timo Makinen 2020-09-04 12:00:02 +00:00
parent f7fc9e97c6
commit 878de962f6

View file

@ -0,0 +1,15 @@
---
- name: install kvm qemu packages
package:
name: "{{ item }}"
state: installed
with_items:
- libvirt-daemon
- qemu-kvm
- virt-install
- name: enable libvirt service
service:
name: libvirtd
state: started
enabled: true