diff --git a/README-user.md b/README-user.md index 291147f1b8820b2f29e95b5c31a6a0b86116747a..9a75ea5310cfbfa2c3b60115202132c59be17779 100644 --- a/README-user.md +++ b/README-user.md @@ -393,8 +393,8 @@ Variable | Description | Required `passwordexpiration` \| `krbpasswordexpiration` | The kerberos password expiration date. Possible formats: `YYYYMMddHHmmssZ`, `YYYY-MM-ddTHH:mm:ssZ`, `YYYY-MM-ddTHH:mmZ`, `YYYY-MM-ddZ`, `YYYY-MM-dd HH:mm:ssZ` or `YYYY-MM-dd HH:mmZ`. The trailing 'Z' can be skipped. Only usable with IPA versions 4.7 and up. | no `password` | The user password string. | no `random` | Generate a random user password | no -`uid` \| `uidnumber` | The UID integer. | no -`gid` \| `gidnumber` | The GID integer. | no +`uid` \| `uidnumber` | User ID Number (system will assign one if not provided). | no +`gid` \| `gidnumber` | Group ID Number. | no `city` | City | no `userstate` \| `st` | State/Province | no `postalcode` \| `zip` | Postalcode/ZIP | no diff --git a/plugins/modules/ipauser.py b/plugins/modules/ipauser.py index acf81a326821b6eb0294db32d809043831711cc2..fa54f59d3ae5b76b66896970571025a224ec8bbf 100644 --- a/plugins/modules/ipauser.py +++ b/plugins/modules/ipauser.py @@ -124,12 +124,12 @@ options: required: false type: bool uid: - description: The UID + description: User ID Number (system will assign one if not provided) type: int required: false aliases: ["uidnumber"] gid: - description: The GID + description: Group ID Number type: int required: false aliases: ["gidnumber"] @@ -348,12 +348,12 @@ options: required: false type: bool uid: - description: The UID + description: User ID Number (system will assign one if not provided) type: int required: false aliases: ["uidnumber"] gid: - description: The GID + description: Group ID Number type: int required: false aliases: ["gidnumber"]