We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1ae5fb commit 236c960Copy full SHA for 236c960
tasks/main.yml
@@ -1,5 +1,5 @@
1
---
2
3
-- include: python.yml
+- import_tasks: python.yml
4
when: python_enabled
5
tags: [python]
tasks/python.yml
@@ -1,9 +1,9 @@
-- include: install.deb.yml
+- import_tasks: install.deb.yml
when: ansible_os_family == 'Debian'
6
-- include: install.yum.yml
+- import_tasks: install.yum.yml
7
when: ansible_os_family == 'RedHat'
8
9
- file: state=directory name=/usr/share/python
test.yml
@@ -1,6 +1,6 @@
- hosts: all
tasks:
- - include: tasks/main.yml
+ - import_tasks: tasks/main.yml
vars_files:
- defaults/main.yml
- .travis.yml
0 commit comments