mirror of
https://github.com/geerlingguy/ansible-role-nfs
synced 2025-01-05 15:00:21 +01:00
Use include_tasks instead of include (fixes #20)
This commit is contained in:
parent
331bcdb0b8
commit
9e02ea7195
1 changed files with 2 additions and 2 deletions
|
@ -12,10 +12,10 @@
|
|||
when: ansible_os_family == 'RedHat' and ansible_distribution == "Fedora"
|
||||
|
||||
# Setup/install tasks.
|
||||
- include: setup-RedHat.yml
|
||||
- include_tasks: setup-RedHat.yml
|
||||
when: ansible_os_family == 'RedHat'
|
||||
|
||||
- include: setup-Debian.yml
|
||||
- include_tasks: setup-Debian.yml
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- name: Ensure directories to export exist
|
||||
|
|
Loading…
Reference in a new issue