Skip to content

Commit

Permalink
Some lint fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy authored and garrettheath4 committed Dec 5, 2023
1 parent ab85dbc commit 9313eeb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .ansible-lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---
skip_list:
- schema[meta]
- role-name
- experimental
- fqcn-builtins
- fqcn
- name[missing]
- no-changed-when
- risky-file-permissions
10 changes: 6 additions & 4 deletions main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
- hosts: all
- name: Configure host.
hosts: all

vars_files:
- default.config.yml
Expand Down Expand Up @@ -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) }}"

0 comments on commit 9313eeb

Please sign in to comment.