fix var names for better hierarchy
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
1847a5a698
commit
f901669341
1 changed files with 5 additions and 5 deletions
|
@ -8,17 +8,17 @@
|
|||
|
||||
- name: Create mountable dir
|
||||
file:
|
||||
path: {{ nfs-mount-path }}
|
||||
path: {{ nfs.mount-path }}
|
||||
state: directory
|
||||
mode: 0644
|
||||
owner: {{ nfs-dir-owner }}
|
||||
group: {{ nfs-dir-group }}
|
||||
owner: {{ nfs.dir-owner }}
|
||||
group: {{ nfs.dir-group }}
|
||||
|
||||
- name: Mount and add to fstab
|
||||
mount:
|
||||
state: mounted # actively mounted and configured in fstab
|
||||
src: {{ nfs-src }}
|
||||
path: {{ nfs-mount-path }}
|
||||
src: {{ nfs.src }}
|
||||
path: {{ nfs.mount-path }}
|
||||
fstype: nfs
|
||||
opts: defaults
|
||||
# don't specify dump and fsck to keep the 0 (don't) variable
|
||||
|
|
Loading…
Reference in a new issue