mirror of
https://github.com/geerlingguy/ansible-role-nfs
synced 2024-11-08 12:53:30 +01:00
Fixes lint issue with file permissions.
This commit is contained in:
parent
25c0e47af2
commit
5838fad667
1 changed files with 4 additions and 1 deletions
|
@ -23,7 +23,10 @@
|
|||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- name: Ensure directories to export exist
|
||||
file: 'path="{{ item.strip().split()[0] }}" state=directory'
|
||||
file:
|
||||
path: "{{ item.strip().split()[0] }}"
|
||||
state: directory
|
||||
mode: preserve
|
||||
with_items: "{{ nfs_exports }}"
|
||||
|
||||
- name: Copy exports file.
|
||||
|
|
Loading…
Reference in a new issue