mirror of
https://github.com/luzifer-ansible/docker.git
synced 2024-11-08 13:50:10 +00:00
Fix: Replace deprecated include builtin
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
41b0002c05
commit
80c58a69e0
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- include: Ubuntu.yml
|
- include_tasks: Ubuntu.yml
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- name: "Loading distribution specific instructions for {{ ansible_distribution }}"
|
- name: "Loading distribution specific instructions for {{ ansible_distribution }}"
|
||||||
include: "{{ ansible_distribution }}.yml"
|
include_tasks: "{{ ansible_distribution }}.yml"
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
docker_global_ipv6: "{{ ansible_eth0.ipv6 | selectattr('scope', 'equalto', 'global') | first }}"
|
docker_global_ipv6: "{{ ansible_eth0.ipv6 | selectattr('scope', 'equalto', 'global') | first }}"
|
||||||
|
|
Loading…
Reference in a new issue