mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-01 13:59: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
|
@ -85,7 +85,7 @@ options:
|
|||
description:
|
||||
- Specifies whether the certificate needs to be validated while communicating.
|
||||
type: bool
|
||||
default: no
|
||||
default: false
|
||||
extends_documentation_fragment:
|
||||
- community.general.hpe3par
|
||||
|
||||
|
@ -108,7 +108,7 @@ EXAMPLES = r'''
|
|||
set_size: 8
|
||||
high_availability: MAG
|
||||
disk_type: FC
|
||||
secure: no
|
||||
secure: false
|
||||
|
||||
- name: Delete CPG sample_cpg
|
||||
community.general.ss_3par_cpg:
|
||||
|
@ -117,7 +117,7 @@ EXAMPLES = r'''
|
|||
storage_system_password: password
|
||||
state: absent
|
||||
cpg_name: sample_cpg
|
||||
secure: no
|
||||
secure: false
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
|
|
|
@ -48,7 +48,7 @@ options:
|
|||
description:
|
||||
- Apply permissions to everyone.
|
||||
type: bool
|
||||
default: no
|
||||
default: false
|
||||
permissions:
|
||||
description:
|
||||
- The list of permission(s) to delegate (required if C(state) is C(present)).
|
||||
|
@ -68,7 +68,7 @@ options:
|
|||
description:
|
||||
- Unallow permissions recursively (ignored when C(state) is C(present)).
|
||||
type: bool
|
||||
default: no
|
||||
default: false
|
||||
author:
|
||||
- Nate Coraor (@natefoo)
|
||||
'''
|
||||
|
@ -84,7 +84,7 @@ EXAMPLES = r'''
|
|||
community.general.zfs_delegate_admin:
|
||||
name: rpool/myvol
|
||||
groups: backup
|
||||
everyone: yes
|
||||
everyone: true
|
||||
permissions: send
|
||||
|
||||
- name: Grant `zfs send,receive` to users `foo` and `bar` with local scope only
|
||||
|
@ -92,12 +92,12 @@ EXAMPLES = r'''
|
|||
name: rpool/myfs
|
||||
users: foo,bar
|
||||
permissions: send,receive
|
||||
local: yes
|
||||
local: true
|
||||
|
||||
- name: Revoke all permissions from everyone (permissions specifically assigned to users and groups remain)
|
||||
community.general.zfs_delegate_admin:
|
||||
name: rpool/myfs
|
||||
everyone: yes
|
||||
everyone: true
|
||||
state: absent
|
||||
'''
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ options:
|
|||
name:
|
||||
description:
|
||||
- ZFS dataset name.
|
||||
required: yes
|
||||
required: true
|
||||
aliases: [ "ds", "dataset" ]
|
||||
type: str
|
||||
recurse:
|
||||
|
@ -28,13 +28,13 @@ options:
|
|||
- Specifies if properties for any children should be recursively
|
||||
displayed.
|
||||
type: bool
|
||||
default: 'no'
|
||||
default: false
|
||||
parsable:
|
||||
description:
|
||||
- Specifies if property values should be displayed in machine
|
||||
friendly format.
|
||||
type: bool
|
||||
default: 'no'
|
||||
default: false
|
||||
properties:
|
||||
description:
|
||||
- Specifies which dataset properties should be queried in comma-separated format.
|
||||
|
@ -62,7 +62,7 @@ EXAMPLES = '''
|
|||
- name: Report space usage on ZFS filesystems under data/home
|
||||
community.general.zfs_facts:
|
||||
name: data/home
|
||||
recurse: yes
|
||||
recurse: true
|
||||
type: filesystem
|
||||
|
||||
- ansible.builtin.debug:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue