mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-24 04:43:04 +00:00
Some lint fixes.
This commit is contained in:
parent
e2da170b97
commit
9fab0a2cf9
2 changed files with 12 additions and 5 deletions
|
@ -1,4 +1,9 @@
|
||||||
---
|
---
|
||||||
skip_list:
|
skip_list:
|
||||||
|
- schema[meta]
|
||||||
|
- role-name
|
||||||
- experimental
|
- experimental
|
||||||
- fqcn-builtins
|
- fqcn
|
||||||
|
- name[missing]
|
||||||
|
- no-changed-when
|
||||||
|
- risky-file-permissions
|
||||||
|
|
10
main.yml
10
main.yml
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
- hosts: all
|
- name: Configure host.
|
||||||
|
hosts: all
|
||||||
|
|
||||||
vars_files:
|
vars_files:
|
||||||
- default.config.yml
|
- default.config.yml
|
||||||
|
@ -45,10 +46,11 @@
|
||||||
when: configure_sublime
|
when: configure_sublime
|
||||||
tags: ['sublime-text']
|
tags: ['sublime-text']
|
||||||
|
|
||||||
- block:
|
- name: Run post-provision task files in a block.
|
||||||
|
tags: ['post']
|
||||||
|
block:
|
||||||
- name: Run configured post-provision ansible task files.
|
- name: Run configured post-provision ansible task files.
|
||||||
include_tasks: "{{ 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) }}"
|
||||||
tags: ['post']
|
|
||||||
|
|
Loading…
Reference in a new issue