Some lint fixes.

This commit is contained in:
Jeff Geerling 2023-02-20 22:55:24 -06:00
parent e2da170b97
commit 9fab0a2cf9
2 changed files with 12 additions and 5 deletions

View file

@ -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

View file

@ -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']