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"
|
- "{{ 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue