Skip to content

Commit d312286

Browse files
authored
Change tasks to include_tasks to solve dep. warning, deprecated as of Ansible 2.16 (#60)
1 parent 15ddad0 commit d312286

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

tasks/main.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
---
22

3-
- include: install.yml
4-
tags: [ zsh, install ]
3+
- include_tasks: install.yml
4+
tags:
5+
- zsh
6+
- install
57

6-
- include: configure.yml
7-
tags: [ zsh, configure ]
8+
- include_tasks: configure.yml
9+
tags:
10+
- zsh
11+
- configure
812

9-
- include: post-install.yml
10-
tags: [ zsh, install, post_install ]
13+
- include_tasks: post-install.yml
14+
tags:
15+
- zsh
16+
- install
17+
- post_install
1118

1219
- name: Reset antigen cache
1320
command: "timeout 10s /bin/zsh -c 'source {{ zsh_config }}; antigen reset'"

0 commit comments

Comments
 (0)