Fix mountpoints for vmhost data disks

This commit is contained in:
Timo Makinen 2022-10-27 18:28:00 +00:00
parent ac596baca9
commit d23baa603b

View file

@ -8,27 +8,27 @@
- "{{ ansible_private }}/vars.yml" - "{{ ansible_private }}/vars.yml"
pre_tasks: pre_tasks:
- name: mount /export - name: mount /export/libvirt/hdd
ansible.builtin.mount: ansible.builtin.mount:
name: /export/hdd name: /export/libvirt/hdd
src: LABEL=hdd src: LABEL=hdd
fstype: xfs fstype: xfs
opts: noatime,noexec,nosuid,nodev opts: noatime,noexec,nosuid,nodev
passno: "0" passno: "0"
dump: "0" dump: "0"
state: mounted state: mounted
- name: mount /export - name: mount /export/libvirt/nvme
ansible.builtin.mount: ansible.builtin.mount:
name: /export/nvme name: /export/libvirt/nvme
src: LABEL=nvme src: LABEL=nvme
fstype: xfs fstype: xfs
opts: noatime,noexec,nosuid,nodev opts: noatime,noexec,nosuid,nodev
passno: "0" passno: "0"
dump: "0" dump: "0"
state: mounted state: mounted
- name: mount /export - name: mount /export/libvirt/ssd
ansible.builtin.mount: ansible.builtin.mount:
name: /export/ssd name: /export/libvirt/ssd
src: LABEL=ssd src: LABEL=ssd
fstype: xfs fstype: xfs
opts: noatime,noexec,nosuid,nodev opts: noatime,noexec,nosuid,nodev