mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-28 20:09:08 -07:00
Use semantic markup (modules o-p) (#6681)
* Use semantic markup. * Use real option, not alias. * E() now works better.
This commit is contained in:
parent
b271dba4bf
commit
45eb1e3915
42 changed files with 420 additions and 419 deletions
|
@ -40,9 +40,9 @@ options:
|
|||
- present
|
||||
- absent
|
||||
description:
|
||||
- If C(present), the module adds user I(user_name) to
|
||||
the Pritunl I(organization). If C(absent), removes the user
|
||||
I(user_name) from the Pritunl I(organization).
|
||||
- If V(present), the module adds user O(user_name) to
|
||||
the Pritunl O(organization). If V(absent), removes the user
|
||||
O(user_name) from the Pritunl O(organization).
|
||||
|
||||
user_name:
|
||||
type: str
|
||||
|
@ -56,7 +56,7 @@ options:
|
|||
required: false
|
||||
default: null
|
||||
description:
|
||||
- Email address associated with the user I(user_name).
|
||||
- Email address associated with the user O(user_name).
|
||||
|
||||
user_type:
|
||||
type: str
|
||||
|
@ -66,7 +66,7 @@ options:
|
|||
- client
|
||||
- server
|
||||
description:
|
||||
- Type of the user I(user_name).
|
||||
- Type of the user O(user_name).
|
||||
|
||||
user_groups:
|
||||
type: list
|
||||
|
@ -74,27 +74,27 @@ options:
|
|||
required: false
|
||||
default: null
|
||||
description:
|
||||
- List of groups associated with the user I(user_name).
|
||||
- List of groups associated with the user O(user_name).
|
||||
|
||||
user_disabled:
|
||||
type: bool
|
||||
required: false
|
||||
default: null
|
||||
description:
|
||||
- Enable/Disable the user I(user_name).
|
||||
- Enable/Disable the user O(user_name).
|
||||
|
||||
user_gravatar:
|
||||
type: bool
|
||||
required: false
|
||||
default: null
|
||||
description:
|
||||
- Enable/Disable Gravatar usage for the user I(user_name).
|
||||
- Enable/Disable Gravatar usage for the user O(user_name).
|
||||
|
||||
user_mac_addresses:
|
||||
type: list
|
||||
elements: str
|
||||
description:
|
||||
- Allowed MAC addresses for the user I(user_name).
|
||||
- Allowed MAC addresses for the user O(user_name).
|
||||
version_added: 5.0.0
|
||||
"""
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue