mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #7249/4030481b backport][stable-7] ipa_user documentation: givenname and sn are required when user doesn't exist (#7281)
ipa_user documentation: givenname and sn are required when user doesn't exist (#7249)
* Edit givenname and sn description.
* Update plugins/modules/ipa_user.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/modules/ipa_user.py
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 4030481b36
)
Co-authored-by: Christer Warén <cwchristerw@gmail.com>
This commit is contained in:
parent
39c39e3de1
commit
eefdf5b58e
1 changed files with 6 additions and 2 deletions
|
@ -30,7 +30,9 @@ options:
|
|||
default: 'always'
|
||||
choices: [ always, on_create ]
|
||||
givenname:
|
||||
description: First name.
|
||||
description:
|
||||
- First name.
|
||||
- If user does not exist and O(state=present), the usage of O(givenname) is required.
|
||||
type: str
|
||||
krbpasswordexpiration:
|
||||
description:
|
||||
|
@ -54,7 +56,9 @@ options:
|
|||
- Will not be set for an existing user unless O(update_password=always), which is the default.
|
||||
type: str
|
||||
sn:
|
||||
description: Surname.
|
||||
description:
|
||||
- Surname.
|
||||
- If user does not exist and O(state=present), the usage of O(sn) is required.
|
||||
type: str
|
||||
sshpubkey:
|
||||
description:
|
||||
|
|
Loading…
Reference in a new issue