Skip to content

Commit 96af67a

Browse files
authored
Merge pull request #6 from singleplatform-eng/SPROD-6311_ansible24_semantics
include to include_tasks
2 parents 7545a99 + 39f35c1 commit 96af67a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

meta/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ galaxy_info:
44
company: SinglePlatform (http://www.singleplatform.com/)
55
license: BSD 3-Clause
66

7-
min_ansible_version: 2.2
7+
min_ansible_version: 2.4
88
platforms:
99
- name: Ubuntu
1010
versions:

tasks/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Install package
4-
- include: install_package.yml
4+
- include_tasks: install_package.yml
55
when: not python_build_from_source
66

77
# Build from source
@@ -10,7 +10,7 @@
1010
when: python_build_from_source
1111
register: python_installed
1212

13-
- include: build_source.yml
13+
- include_tasks: build_source.yml
1414
when: python_build_from_source and python_installed.stat.exists == false
1515

1616
# Install/upgrade pip
@@ -19,7 +19,7 @@
1919
register: pip_installed
2020

2121
- name: Install pip
22-
include: install_pip.yml
22+
include_tasks: install_pip.yml
2323
when: pip_installed.stat.exists == false
2424

2525
- name: Add system pip.conf

0 commit comments

Comments
 (0)