Fix the nfs export directory creation.
This commit is contained in:
parent
e54b91f170
commit
8aa348b74a
|
@ -3,11 +3,12 @@
|
||||||
block:
|
block:
|
||||||
- name: Create the directory of the nextcloud NFS export
|
- name: Create the directory of the nextcloud NFS export
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
dest: '{{ san_nextcloud_data_directory_for_export }}'
|
dest: '{{ item.path }}'
|
||||||
state: directory
|
state: directory
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
loop: '{{ nfs_server_ganesha_exports }}'
|
||||||
|
|
||||||
tags: [ 'san', 'nfs', 'storage', 'ganesha', 'ganesha_export' ]
|
tags: [ 'san', 'nfs', 'storage', 'ganesha', 'ganesha_export' ]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue