mirror of
https://github.com/geerlingguy/ansible-role-nfs
synced 2024-12-05 00:50:18 +01:00
Fix Ansible 2.0 deprecation warning for bare variables.
This commit is contained in:
parent
492a9df298
commit
8670eb1720
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
|
||||
- name: Ensure directories to export exist
|
||||
file: 'path="{{ item.strip().split()[0] }}" state=directory'
|
||||
with_items: nfs_exports
|
||||
with_items: "{{ nfs_exports }}"
|
||||
notify: restart nfs
|
||||
|
||||
- name: Copy exports file.
|
||||
|
|
Loading…
Reference in a new issue