Ansible role to manage user and group accounts
Manages user and group accounts.
None
user_groups
: [default: []
]: Group declarationsuser_groups.{n}.name
: [required]: The name of the group to manageuser_groups.{n}.gid
: [optional]: GID to set for the groupuser_groups.{n}.system
: [default: false
]: If true
, indicates that the group created is a system groupuser_groups.{n}.state
: [default: present
]: Whether the group should be present or not on the remote host
user_users
: [default: []
]: User declarations
user_users.{n}.name
: [required]: The name of the user to manageuser_users.{n}.uid
: [optional]: UID to set for the useruser_users.{n}.comment
: [default: ''
]: Sets the description (aka GECOS
) of user accountuser_users.{n}.group
: [default: name
]: Sets the user’s primary group (takes a group name)user_users.{n}.groups
: [default: []
]: Puts the user in this list of groups. When set to []
, the user is removed from all groups except the primary groupuser_users.{n}.append
: [default: false
]: If true
, will only add groups, not set them to just the list in groupsuser_users.{n}.password
: [default: *
]: Sets the user’s password to this crypted valueuser_users.{n}.update_password
: [default: always
]: always
will update passwords if they differ. on_create
will only set the password for newly created usersuser_users.{n}.shell
: [default: /bin/bash
]: Sets the user’s shelluser_users.{n}.home
: [default: /home/name
or /name
for root
]: Sets the user’s home directoryuser_users.{n}.dir_mode
: [optional]: The mode the home directory (e.g. 0755
, 0700
)user_users.{n}.system
: [default: false
]: If true
, indicates that the user created is a system useruser_users.{n}.state
: [default: present
]: Whether the user should be present or not on the remote hostuser_users.{n}.remove
: [default: false
]: When used with state=absent
, behavior is as with userdel --remove
None
---
- hosts: all
roles:
- oefenweb.user
MIT
Mischa ter Smitten
Are welcome!