mirror of
https://github.com/luzifer-ansible/docker-compose.git
synced 2024-11-08 13:39:59 +00:00
Fix: replace deprecated include
builtin
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
fcff1ff3ea
commit
ba38259775
2 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
|
||||
- include: Ubuntu.yml
|
||||
- include_tasks: Ubuntu.yml
|
||||
|
||||
...
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
# Install docker-compose
|
||||
|
||||
- name: "Loading distribution specific instructions for {{ ansible_distribution }}"
|
||||
include: "{{ ansible_distribution }}.yml"
|
||||
include_tasks: "{{ ansible_distribution }}.yml"
|
||||
when: not docker_compose_use_docker_image
|
||||
|
||||
- name: Install shell wrapper for docker-compose image
|
||||
include: "docker-wrapper.yml"
|
||||
include_tasks: "docker-wrapper.yml"
|
||||
when: docker_compose_use_docker_image
|
||||
|
||||
# Configure docker-compose
|
||||
|
|
Loading…
Reference in a new issue