Finish role libvirt

This commit is contained in:
flyingscorpio@clevo 2022-03-05 19:32:15 +01:00
parent 0e4a0b0237
commit 66439ea6df
4 changed files with 35 additions and 9 deletions

View file

@ -117,12 +117,3 @@ gaming:
- lib32-gst-plugins-base-libs
- vulkan-icd-loader
- lib32-vulkan-icd-loader
libvirt:
- run:
- sudo systemctl start libvirtd.service && sudo systemctl enable libvirtd.service
- run:
- virsh pool-define-as libvirt-pool dir - - - - "/home/${USER}/.local/libvirt/images";
virsh pool-build libvirt-pool &&
virsh pool-start libvirt-pool &&
virsh pool-autostart libvirt-pool

View file

@ -0,0 +1,7 @@
---
- name: Enable libvirtd service
systemd:
name: libvirtd
enabled: true
state: started
scope: system

View file

@ -33,3 +33,18 @@
backrefs: true
backup: true
when: "'libvirt libvirt_guest' not in nsswitch_content"
notify: Enable libvirtd service
- name: Define session pool
virt_pool:
command: define
name: libvirt-pool
uri: "qemu:///session"
xml: "{{ lookup('template', 'libvirt-pool.xml.j2') }}"
- name: Start session pool
virt_pool:
state: active
autostart: true
name: libvirt-pool
uri: "qemu:///session"

View file

@ -0,0 +1,13 @@
<pool type='dir'>
<name>libvirt-pool</name>
<source>
</source>
<target>
<path>/home/{{ ansible_facts['env']['USER'] }}/.local/libvirt/images</path>
<permissions>
<mode>0711</mode>
<owner>1000</owner>
<group>1000</group>
</permissions>
</target>
</pool>