More true/false normalization (#6152)

* More true/false normalization.

* Boolean do not need explicit choices.

* One more.

* Fix type argument.
This commit is contained in:
Felix Fontein 2023-03-06 23:02:24 +01:00 committed by GitHub
commit 11c7611ced
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
48 changed files with 203 additions and 219 deletions

View file

@ -6,7 +6,7 @@
- name: Is the locale we're going to test against installed?
shell: locale -a | grep pt_BR
register: initial_state
ignore_errors: True
ignore_errors: true
- name: Make sure the locale is not installed
locale_gen:
@ -16,7 +16,7 @@
- name: Is the locale present?
shell: locale -a | grep pt_BR
register: cleaned
ignore_errors: True
ignore_errors: true
- name: Make sure the locale is not present
assert:
@ -32,7 +32,7 @@
- name: Is the locale present?
shell: locale -a | grep pt_BR
register: post_check_output
ignore_errors: True
ignore_errors: true
- name: Make sure the locale is present and we say we installed it
assert:
@ -49,7 +49,7 @@
- name: Is the locale present?
shell: locale -a | grep pt_BR
register: post_check_output
ignore_errors: True
ignore_errors: true
- name: Make sure the locale is present and we reported no change
assert:
@ -66,7 +66,7 @@
- name: Is the locale present?
shell: locale -a | grep pt_BR
register: post_check_output
ignore_errors: True
ignore_errors: true
- name: Make sure the locale is absent and we reported a change
assert:
@ -83,7 +83,7 @@
- name: Is the locale present?
shell: locale -a | grep pt_BR
register: post_check_output
ignore_errors: True
ignore_errors: true
- name: Make sure the locale is absent and we reported no change
assert: