mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-23 20:33: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:
|
||||
- schema[meta]
|
||||
- role-name
|
||||
- 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:
|
||||
- default.config.yml
|
||||
|
@ -45,10 +46,11 @@
|
|||
when: configure_sublime
|
||||
tags: ['sublime-text']
|
||||
|
||||
- block:
|
||||
- name: Run post-provision task files in a block.
|
||||
tags: ['post']
|
||||
block:
|
||||
- name: Run configured post-provision ansible task files.
|
||||
include_tasks: "{{ outer_item }}"
|
||||
loop_control:
|
||||
loop_var: outer_item
|
||||
with_fileglob: "{{ post_provision_tasks|default(omit) }}"
|
||||
tags: ['post']
|
||||
with_fileglob: "{{ post_provision_tasks | default(omit) }}"
|
||||
|
|
Loading…
Reference in a new issue