Skip to content

Commit

Permalink
Change tasks to include_tasks to solve dep. warning, deprecated as of…
Browse files Browse the repository at this point in the history
… Ansible 2.16 (#60)
  • Loading branch information
stefanfluit authored Feb 13, 2022
1 parent 15ddad0 commit d312286
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
---

- include: install.yml
tags: [ zsh, install ]
- include_tasks: install.yml
tags:
- zsh
- install

- include: configure.yml
tags: [ zsh, configure ]
- include_tasks: configure.yml
tags:
- zsh
- configure

- include: post-install.yml
tags: [ zsh, install, post_install ]
- include_tasks: post-install.yml
tags:
- zsh
- install
- post_install

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

0 comments on commit d312286

Please sign in to comment.