Start libvirt after installation

This commit is contained in:
flyingscorpio@arch-desktop 2023-08-11 19:01:10 +02:00
parent 96b794ec74
commit da8f6fd9ff

View file

@ -23,6 +23,13 @@
- virt-viewer
when: ansible_facts['distribution'] == 'Debian'
- name: Start and enable libvirtd service
become: true
ansible.builtin.systemd:
name: libvirtd
enabled: true
state: started
- name: Add user to libvirt group
become: true
ansible.builtin.user:
@ -67,10 +74,3 @@
autostart: true
name: "{{ pool_name }}"
uri: "qemu:///session"
- name: Start and enable libvirtd service
become: true
ansible.builtin.systemd:
name: libvirtd
enabled: true
state: started