Add support for datadisk type

This commit is contained in:
Timo Makinen 2022-08-13 17:34:34 +00:00
parent 4de72ed215
commit b1036de33d
20 changed files with 40 additions and 31 deletions

View file

@ -9,10 +9,19 @@
vars_files:
- "{{ ansible_private }}/vars.yml"
pre_tasks:
- name: mount /export
- name: mount /export/home
mount:
name: /export
src: LABEL=/export
name: /export/home
src: LABEL=home
fstype: xfs
opts: noatime
passno: "0"
dump: "0"
state: mounted
- name: mount /export/roles
mount:
name: /export/roles
src: LABEL=roles
fstype: xfs
opts: noatime
passno: "0"