Convert to reduced list of known types (#50010)

This commit is contained in:
Dag Wieers 2018-12-18 22:25:30 +01:00 committed by Jordan Borean
parent fcd1486b51
commit 05c6ff79f9
908 changed files with 4822 additions and 4821 deletions

View file

@ -76,22 +76,22 @@ RETURN = '''
name:
description: ZFS dataset name
returned: always
type: string
type: str
sample: rpool/var/spool
parsable:
description: if parsable output should be provided in machine friendly format.
returned: if 'parsable' is set to True
type: boolean
type: bool
sample: True
recurse:
description: if we should recurse over ZFS dataset
returned: if 'recurse' is set to True
type: boolean
type: bool
sample: True
zfs_datasets:
description: ZFS dataset facts
returned: always
type: string
type: str
sample:
{
"aclinherit": "restricted",

View file

@ -63,7 +63,7 @@ ansible_facts:
ansible_zfs_pools:
description: ZFS pool facts
returned: always
type: string
type: str
sample:
{
"allocated": "3.46G",
@ -109,12 +109,12 @@ ansible_facts:
name:
description: ZFS pool name
returned: always
type: string
type: str
sample: rpool
parsable:
description: if parsable output should be provided in machine friendly format.
returned: if 'parsable' is set to True
type: boolean
type: bool
sample: True
'''