Skip to content

Commit 79fc6e4

Browse files
authored
Replace "yes"/"no" boolean values with "true"/"false" (#103)
1 parent 4a68a76 commit 79fc6e4

File tree

7 files changed

+8
-5
lines changed

7 files changed

+8
-5
lines changed

.ansible-lint

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
exclude_paths:
3+
- ~/.cache

.github/workflows/galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Ansible Galaxy import
3-
on:
3+
"on":
44
release:
55
types:
66
- published

.github/workflows/molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Molecule CI/CD
3-
on:
3+
"on":
44
pull_request:
55
branches:
66
- main

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Release Drafter
3-
on:
3+
"on":
44
pull_request:
55
types:
66
- opened

.yamllint

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ rules:
1010
level: error
1111
comments-indentation: disable
1212
line-length: disable
13-
truthy: disable

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ENHANCEMENTS:
77
* Replace Ansible base with Ansible core. Ansible core will be the "core" Ansible release moving forward from Ansible `2.11`.
88
* Update GitHub actions to add a workflow dispatch option.
99
* Update the Ansible `community.general` collection to `3.1.0` and `community.docker` collection to `1.6.1`.
10+
* Replace "yes"/"no" boolean values with "true"/"false" to comply with YAML spec `1.2`.
1011

1112
## 0.5.0 (May 12, 2020)
1213

tasks/install/install-debian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- name: (Debian/Ubuntu) {{ nginx_app_protect_license_status is defined | ternary('Remove', 'Configure') }} NGINX Plus license
44
blockinfile:
55
path: /etc/apt/apt.conf.d/90nginx
6-
create: yes
6+
create: true
77
block: |
88
Acquire::https::{{ (nginx_plus_repository | default(nginx_plus_default_repository_debian)) | regex_search('(?<=https://)[^/]*') }}::Verify-Peer "true";
99
Acquire::https::{{ (nginx_plus_repository | default(nginx_plus_default_repository_debian)) | regex_search('(?<=https://)[^/]*') }}::Verify-Host "true";

0 commit comments

Comments
 (0)