mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-30 21:09:09 -07:00
Adjust booleans in misc modules. (#5160)
This commit is contained in:
parent
7533f9ac26
commit
403c4f7477
27 changed files with 110 additions and 110 deletions
|
@ -17,9 +17,9 @@ description:
|
|||
options:
|
||||
append:
|
||||
description:
|
||||
- If C(yes), add the listed I(user) and I(group) to the group members.
|
||||
- If C(no), only the listed I(user) and I(group) will be group members, removing any other members.
|
||||
default: no
|
||||
- If C(true), add the listed I(user) and I(group) to the group members.
|
||||
- If C(false), only the listed I(user) and I(group) will be group members, removing any other members.
|
||||
default: false
|
||||
type: bool
|
||||
version_added: 4.0.0
|
||||
cn:
|
||||
|
@ -45,9 +45,9 @@ options:
|
|||
group:
|
||||
description:
|
||||
- List of group names assigned to this group.
|
||||
- If I(append=no) and an empty list is passed all groups will be removed from this group.
|
||||
- If I(append=false) and an empty list is passed all groups will be removed from this group.
|
||||
- Groups that are already assigned but not passed will be removed.
|
||||
- If I(append=yes) the listed groups will be assigned without removing other groups.
|
||||
- If I(append=true) the listed groups will be assigned without removing other groups.
|
||||
- If option is omitted assigned groups will not be checked or changed.
|
||||
type: list
|
||||
elements: str
|
||||
|
@ -58,9 +58,9 @@ options:
|
|||
user:
|
||||
description:
|
||||
- List of user names assigned to this group.
|
||||
- If I(append=no) and an empty list is passed all users will be removed from this group.
|
||||
- If I(append=false) and an empty list is passed all users will be removed from this group.
|
||||
- Users that are already assigned but not passed will be removed.
|
||||
- If I(append=yes) the listed users will be assigned without removing other users.
|
||||
- If I(append=true) the listed users will be assigned without removing other users.
|
||||
- If option is omitted assigned users will not be checked or changed.
|
||||
type: list
|
||||
elements: str
|
||||
|
@ -110,7 +110,7 @@ EXAMPLES = r'''
|
|||
name: developers
|
||||
user:
|
||||
- john
|
||||
append: yes
|
||||
append: true
|
||||
state: present
|
||||
ipa_host: ipa.example.com
|
||||
ipa_user: admin
|
||||
|
|
|
@ -620,7 +620,7 @@ EXAMPLES = '''
|
|||
client_template: test
|
||||
use_template_config: False
|
||||
use_template_scope: false
|
||||
use_template_mappers: no
|
||||
use_template_mappers: false
|
||||
always_display_in_console: true
|
||||
registered_nodes:
|
||||
node01.example.com: 1507828202
|
||||
|
|
|
@ -38,7 +38,7 @@ options:
|
|||
description:
|
||||
- Verify TLS certificates (do not disable this in production).
|
||||
type: bool
|
||||
default: yes
|
||||
default: true
|
||||
|
||||
realm:
|
||||
type: str
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue