mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-22 03:43:06 +00:00
Merge pull request #58 from ksoda/fix_syntax_warnings
Fix syntax warnings
This commit is contained in:
commit
df25444b3f
1 changed files with 6 additions and 6 deletions
12
main.yml
12
main.yml
|
@ -22,23 +22,23 @@
|
|||
tags: ['mas']
|
||||
|
||||
tasks:
|
||||
- include: tasks/ansible-setup.yml
|
||||
- include_tasks: tasks/ansible-setup.yml
|
||||
|
||||
- include: tasks/sudoers.yml
|
||||
- include_tasks: tasks/sudoers.yml
|
||||
when: configure_sudoers
|
||||
|
||||
- include: tasks/terminal.yml
|
||||
- include_tasks: tasks/terminal.yml
|
||||
when: configure_terminal
|
||||
|
||||
- include: tasks/osx.yml
|
||||
- include_tasks: tasks/osx.yml
|
||||
when: configure_osx
|
||||
tags: ['osx']
|
||||
|
||||
- include: tasks/extra-packages.yml
|
||||
- include_tasks: tasks/extra-packages.yml
|
||||
tags: ['extra-packages']
|
||||
|
||||
- name: Run configured post-provision ansible task files.
|
||||
include: "{{ outer_item }}"
|
||||
include_tasks: "{{ outer_item }}"
|
||||
loop_control:
|
||||
loop_var: outer_item
|
||||
with_fileglob: "{{ post_provision_tasks|default(omit) }}"
|
||||
|
|
Loading…
Reference in a new issue