reorganize
This commit is contained in:
parent
de9c0019fa
commit
c2521842a0
15 changed files with 90 additions and 94 deletions
17
ansible/roles/libvirt/tasks/main.yml
Normal file
17
ansible/roles/libvirt/tasks/main.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
- name: Start libvirtd
|
||||
systemd:
|
||||
name: libvirtd
|
||||
enabled: true
|
||||
state: started
|
||||
|
||||
- name: Add root to libvirt group
|
||||
user:
|
||||
name: root
|
||||
groups: libvirt
|
||||
append: yes
|
||||
|
||||
- name: Disable apparmor
|
||||
systemd:
|
||||
name: apparmor
|
||||
enabled: false
|
||||
state: stopped
|
Reference in a new issue