mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes for ipa_group and ipa_user to show that uidnumber/gidnumber needs to be strings not numbers (#300)
This commit is contained in:
parent
dae5472206
commit
06769c4e69
2 changed files with 3 additions and 3 deletions
|
@ -73,7 +73,7 @@ EXAMPLES = r'''
|
||||||
- name: Ensure group is present
|
- name: Ensure group is present
|
||||||
ipa_group:
|
ipa_group:
|
||||||
name: oinstall
|
name: oinstall
|
||||||
gidnumber: 54321
|
gidnumber: '54321'
|
||||||
state: present
|
state: present
|
||||||
ipa_host: ipa.example.com
|
ipa_host: ipa.example.com
|
||||||
ipa_user: admin
|
ipa_user: admin
|
||||||
|
|
|
@ -117,8 +117,8 @@ EXAMPLES = r'''
|
||||||
sshpubkey:
|
sshpubkey:
|
||||||
- ssh-rsa ....
|
- ssh-rsa ....
|
||||||
- ssh-dsa ....
|
- ssh-dsa ....
|
||||||
uidnumber: 1001
|
uidnumber: '1001'
|
||||||
gidnumber: 100
|
gidnumber: '100'
|
||||||
homedirectory: /home/pinky
|
homedirectory: /home/pinky
|
||||||
ipa_host: ipa.example.com
|
ipa_host: ipa.example.com
|
||||||
ipa_user: admin
|
ipa_user: admin
|
||||||
|
|
Loading…
Reference in a new issue