mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
Add attributes to some filesystem modules (#5960)
Add attributes to some filesystem modules.
This commit is contained in:
parent
51394b55a0
commit
3b97fad577
9 changed files with 70 additions and 11 deletions
|
@ -15,6 +15,19 @@ module: zfs
|
|||
short_description: Manage zfs
|
||||
description:
|
||||
- Manages ZFS file systems, volumes, clones and snapshots
|
||||
extends_documentation_fragment:
|
||||
- community.general.attributes
|
||||
attributes:
|
||||
check_mode:
|
||||
support: partial
|
||||
details:
|
||||
- In certain situations it may report a task as changed that will not be reported
|
||||
as changed when C(check_mode) is disabled.
|
||||
- For example, this might occur when the zpool C(altroot) option is set or when
|
||||
a size is written using human-readable notation, such as C(1M) or C(1024K),
|
||||
instead of as an unqualified byte count, such as C(1048576).
|
||||
diff_mode:
|
||||
support: full
|
||||
options:
|
||||
name:
|
||||
description:
|
||||
|
@ -39,12 +52,6 @@ options:
|
|||
- See the zfs(8) man page for more information.
|
||||
type: dict
|
||||
default: {}
|
||||
notes:
|
||||
- C(check_mode) is supported, but in certain situations it may report a task
|
||||
as changed that will not be reported as changed when C(check_mode) is disabled.
|
||||
For example, this might occur when the zpool C(altroot) option is set or when
|
||||
a size is written using human-readable notation, such as C(1M) or C(1024K),
|
||||
instead of as an unqualified byte count, such as C(1048576).
|
||||
author:
|
||||
- Johan Wiren (@johanwiren)
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue