Fix mountpoints for vmhost data disks
This commit is contained in:
parent
ac596baca9
commit
d23baa603b
1 changed files with 6 additions and 6 deletions
|
@ -8,27 +8,27 @@
|
|||
- "{{ ansible_private }}/vars.yml"
|
||||
|
||||
pre_tasks:
|
||||
- name: mount /export
|
||||
- name: mount /export/libvirt/hdd
|
||||
ansible.builtin.mount:
|
||||
name: /export/hdd
|
||||
name: /export/libvirt/hdd
|
||||
src: LABEL=hdd
|
||||
fstype: xfs
|
||||
opts: noatime,noexec,nosuid,nodev
|
||||
passno: "0"
|
||||
dump: "0"
|
||||
state: mounted
|
||||
- name: mount /export
|
||||
- name: mount /export/libvirt/nvme
|
||||
ansible.builtin.mount:
|
||||
name: /export/nvme
|
||||
name: /export/libvirt/nvme
|
||||
src: LABEL=nvme
|
||||
fstype: xfs
|
||||
opts: noatime,noexec,nosuid,nodev
|
||||
passno: "0"
|
||||
dump: "0"
|
||||
state: mounted
|
||||
- name: mount /export
|
||||
- name: mount /export/libvirt/ssd
|
||||
ansible.builtin.mount:
|
||||
name: /export/ssd
|
||||
name: /export/libvirt/ssd
|
||||
src: LABEL=ssd
|
||||
fstype: xfs
|
||||
opts: noatime,noexec,nosuid,nodev
|
||||
|
|
Loading…
Add table
Reference in a new issue