mirror of
https://github.com/geerlingguy/ansible-role-docker.git
synced 2024-11-18 19:10:43 +01:00
Changed 'include' to 'include_tasks' due to deprecations in Ansible >2.4
This commit is contained in:
parent
e4a6edb4ef
commit
462a0b5359
@ -1,8 +1,8 @@
|
||||
---
|
||||
- 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: Install Docker.
|
||||
@ -14,5 +14,5 @@
|
||||
state: started
|
||||
enabled: yes
|
||||
|
||||
- include: docker-compose.yml
|
||||
- include_tasks: docker-compose.yml
|
||||
when: docker_install_compose
|
||||
|
Loading…
Reference in New Issue
Block a user