Skip to content

Commit 51b0dff

Browse files
authoredJan 7, 2024
Replace deprecated "include" with "include_tasks" (#291)
The existing code does not work on any semi-recent Ansible versions. URL: #281 URL: #178
1 parent 4d4f55f commit 51b0dff

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎tasks/main.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
---
2-
- include: check_vars.yml
2+
- include_tasks: check_vars.yml
33

4-
- include: download.yml
4+
- include_tasks: download.yml
55
when: redis_install_from_source
66
tags:
77
- download
88

9-
- include: dependencies.yml
9+
- include_tasks: dependencies.yml
1010
when: redis_install_from_source
1111
tags:
1212
- install
1313

14-
- include: install.yml
14+
- include_tasks: install.yml
1515
when: redis_install_from_source
1616
tags:
1717
- install
1818

19-
- include: install_from_repo.yml
19+
- include_tasks: install_from_repo.yml
2020
when: not redis_install_from_source
2121
tags:
2222
- install
2323

24-
- include: server.yml
24+
- include_tasks: server.yml
2525
when: not redis_sentinel
2626
tags:
2727
- config
2828

29-
- include: sentinel.yml
29+
- include_tasks: sentinel.yml
3030
when: redis_sentinel
3131
tags:
3232
- config
3333

34-
- include: local_facts.yml
34+
- include_tasks: local_facts.yml
3535
when: redis_local_facts|bool

0 commit comments

Comments
 (0)
Please sign in to comment.