yaml syntax fixes

This commit is contained in:
AnsibleGuy 2022-02-05 12:53:21 +01:00
parent 5504cb7d4a
commit a5d4f246a4
5 changed files with 19 additions and 8 deletions

1
.github/FUNDING.yml vendored
View File

@ -1,3 +1,4 @@
---
# These are supported funding model platforms
patreon: ansibleguy

9
.yamllint Normal file
View File

@ -0,0 +1,9 @@
---
extends: default
rules:
truthy:
allowed-values: ['true', 'false', 'yes', 'no']
line-length:
max: 150

View File

@ -1,3 +1,4 @@
---
# external roles and collections to download
# install: ansible-galaxy install -r requirements.yml

View File

@ -39,8 +39,8 @@
community.general.apache2_module:
state: absent
name: "{{ APACHE_CONFIG.modules.absent }}"
force: True
ignore_configcheck: True
force: true
ignore_configcheck: true
register: apache_mods_disable_raw
tags: [base]