mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-19 11:20:22 -07:00
[PR #9308/f9bfe4e4 backport][stable-10] x*: adjust docs (#9342)
x*: adjust docs (#9308)
* adjust docs
* Update plugins/modules/xml.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* fix capitalisation
* add markup to references of the xe command (xenserver)
* add missing markup
* Update plugins/modules/xml.py
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit f9bfe4e4a6
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
434032080e
commit
474c7a7240
11 changed files with 827 additions and 863 deletions
|
@ -12,7 +12,6 @@ from __future__ import absolute_import, division, print_function
|
|||
__metaclass__ = type
|
||||
|
||||
DOCUMENTATION = r"""
|
||||
---
|
||||
module: xfs_quota
|
||||
short_description: Manage quotas on XFS filesystems
|
||||
description:
|
||||
|
@ -85,7 +84,7 @@ options:
|
|||
- absent
|
||||
|
||||
requirements:
|
||||
- xfsprogs
|
||||
- xfsprogs
|
||||
"""
|
||||
|
||||
EXAMPLES = r"""
|
||||
|
@ -109,40 +108,39 @@ EXAMPLES = r"""
|
|||
mountpoint: /home
|
||||
isoft: 1024
|
||||
ihard: 2048
|
||||
|
||||
"""
|
||||
|
||||
RETURN = r"""
|
||||
bhard:
|
||||
description: the current bhard setting in bytes
|
||||
returned: always
|
||||
type: int
|
||||
sample: 1024
|
||||
description: The current C(bhard) setting in bytes.
|
||||
returned: always
|
||||
type: int
|
||||
sample: 1024
|
||||
bsoft:
|
||||
description: the current bsoft setting in bytes
|
||||
returned: always
|
||||
type: int
|
||||
sample: 1024
|
||||
description: The current C(bsoft) setting in bytes.
|
||||
returned: always
|
||||
type: int
|
||||
sample: 1024
|
||||
ihard:
|
||||
description: the current ihard setting in bytes
|
||||
returned: always
|
||||
type: int
|
||||
sample: 100
|
||||
description: The current C(ihard) setting in bytes.
|
||||
returned: always
|
||||
type: int
|
||||
sample: 100
|
||||
isoft:
|
||||
description: the current isoft setting in bytes
|
||||
returned: always
|
||||
type: int
|
||||
sample: 100
|
||||
description: The current C(isoft) setting in bytes.
|
||||
returned: always
|
||||
type: int
|
||||
sample: 100
|
||||
rtbhard:
|
||||
description: the current rtbhard setting in bytes
|
||||
returned: always
|
||||
type: int
|
||||
sample: 1024
|
||||
description: The current C(rtbhard) setting in bytes.
|
||||
returned: always
|
||||
type: int
|
||||
sample: 1024
|
||||
rtbsoft:
|
||||
description: the current rtbsoft setting in bytes
|
||||
returned: always
|
||||
type: int
|
||||
sample: 1024
|
||||
description: The current C(rtbsoft) setting in bytes.
|
||||
returned: always
|
||||
type: int
|
||||
sample: 1024
|
||||
"""
|
||||
|
||||
import grp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue