Merge pull request #58 from ksoda/fix_syntax_warnings

Fix syntax warnings
This commit is contained in:
Jeff Geerling 2018-05-25 12:34:31 -05:00 committed by GitHub
commit df25444b3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,23 +22,23 @@
tags: ['mas'] tags: ['mas']
tasks: tasks:
- include: tasks/ansible-setup.yml - include_tasks: tasks/ansible-setup.yml
- include: tasks/sudoers.yml - include_tasks: tasks/sudoers.yml
when: configure_sudoers when: configure_sudoers
- include: tasks/terminal.yml - include_tasks: tasks/terminal.yml
when: configure_terminal when: configure_terminal
- include: tasks/osx.yml - include_tasks: tasks/osx.yml
when: configure_osx when: configure_osx
tags: ['osx'] tags: ['osx']
- include: tasks/extra-packages.yml - include_tasks: tasks/extra-packages.yml
tags: ['extra-packages'] tags: ['extra-packages']
- name: Run configured post-provision ansible task files. - name: Run configured post-provision ansible task files.
include: "{{ outer_item }}" include_tasks: "{{ outer_item }}"
loop_control: loop_control:
loop_var: outer_item loop_var: outer_item
with_fileglob: "{{ post_provision_tasks|default(omit) }}" with_fileglob: "{{ post_provision_tasks|default(omit) }}"