kvm_host: Move os disks to dedicated disk

This commit is contained in:
Timo Makinen 2024-02-13 20:01:25 +00:00
parent cdc505274d
commit 31d00d0b9d
3 changed files with 13 additions and 1 deletions

View file

@ -26,6 +26,15 @@
passno: "0"
dump: "0"
state: mounted
- name: Mount /export/libvirt/os
ansible.posix.mount:
name: /export/libvirt/os
src: LABEL=os
fstype: xfs
opts: noatime,noexec,nosuid,nodev
passno: "0"
dump: "0"
state: mounted
- name: Mount /export/libvirt/ssd
ansible.posix.mount:
name: /export/libvirt/ssd
@ -35,6 +44,7 @@
passno: "0"
dump: "0"
state: mounted
when: inventory_hostname == "vmhost01.home.foo.sh"
roles:
- base