Skip to content

Commit 584bf0e

Browse files
authored
Merge pull request #56 from andygrunwald/include_deprecated
Fix #55: [DEPRECATION WARNING]: "include" is deprecated, use include_tasks/import_tasks instead
2 parents 2e9384b + dd50780 commit 584bf0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
include_vars: "{{ ansible_os_family }}.yml"
44
tags: always
55

6-
- include: install.yml
6+
- include_tasks: install.yml
77
when: service_state != "absent"
8-
- include: uninstall.yml
8+
- include_tasks: uninstall.yml
99
when: service_state == "absent"

0 commit comments

Comments
 (0)