mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21: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
|
@ -111,7 +111,7 @@
|
|||
path: /tmp/foo
|
||||
substitute: /home
|
||||
state: present
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_first
|
||||
|
||||
- assert:
|
||||
|
@ -124,7 +124,7 @@
|
|||
path: /tmp/foo
|
||||
substitute: /home
|
||||
state: present
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_second
|
||||
|
||||
- assert:
|
||||
|
@ -137,7 +137,7 @@
|
|||
path: /tmp/foo
|
||||
substitute: /boot
|
||||
state: present
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_third
|
||||
|
||||
- assert:
|
||||
|
@ -150,7 +150,7 @@
|
|||
path: /tmp/foo
|
||||
substitute: /boot
|
||||
state: present
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_fourth
|
||||
|
||||
- assert:
|
||||
|
@ -163,7 +163,7 @@
|
|||
path: /tmp/foo
|
||||
substitute: /dev
|
||||
state: absent
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_fifth
|
||||
|
||||
- assert:
|
||||
|
@ -176,7 +176,7 @@
|
|||
path: /tmp/foo
|
||||
substitute: /boot
|
||||
state: absent
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_sixth
|
||||
|
||||
- assert:
|
||||
|
@ -189,7 +189,7 @@
|
|||
path: /tmp/foo
|
||||
substitute: /boot
|
||||
state: absent
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_seventh
|
||||
|
||||
- assert:
|
||||
|
@ -202,7 +202,7 @@
|
|||
path: /tmp/foo
|
||||
substitute: /home
|
||||
state: present
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_eighth
|
||||
|
||||
- assert:
|
||||
|
@ -214,7 +214,7 @@
|
|||
sefcontext:
|
||||
path: /tmp/foo
|
||||
state: absent
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_ninth
|
||||
|
||||
- assert:
|
||||
|
@ -225,7 +225,7 @@
|
|||
sefcontext:
|
||||
path: /tmp/foo
|
||||
state: absent
|
||||
reload: no
|
||||
reload: false
|
||||
register: subst_tenth
|
||||
|
||||
- assert:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue