mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 22:00:22 -07:00
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:
parent
627371e2d8
commit
11c7611ced
48 changed files with 203 additions and 219 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue