Fix the nfs export directory creation.

This commit is contained in:
Andrea Dell'Amico 2022-03-21 18:52:05 +01:00
parent e54b91f170
commit 8aa348b74a
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 1 deletions

View File

@ -3,11 +3,12 @@
block:
- name: Create the directory of the nextcloud NFS export
ansible.builtin.file:
dest: '{{ san_nextcloud_data_directory_for_export }}'
dest: '{{ item.path }}'
state: directory
owner: root
group: root
mode: 0755
loop: '{{ nfs_server_ganesha_exports }}'
tags: [ 'san', 'nfs', 'storage', 'ganesha', 'ganesha_export' ]