Merge pull request #37 from pad92/patch-1

'include' for tasks has been deprecated
master
Jeff Geerling 2018-05-01 19:12:34 -05:00 committed by GitHub
commit 9cf251de02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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