- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with identity
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module manages identities like users and groups.
It provides some defined types and hiera helpers to mass-manage users and groups. Some features:
- Define users and groups in hiera
- Cleanly remove users and groups with
ensure => absent
- Manage
skel
files - Deliver user specific dotfiles
- Users
- Groups
/etc/skel
directory
It's not needed to include or instantiate the main class to use this module.
The main class is just there to pass a hash of users and groups to the create_resources
function
and to manage the skel
directory.
The main functionality lies in the defined types (see below).
You can pass a hash of users and groups to the main class or call the two
defined types identity::user
or identity::group
directly, passing the correct parameters.
Some specialities explained:
- identity::user::ignore_uid_gid: Allows to ignore the uid and gid parameters, even if they define something. This can be usefull if you normally manage the uids and gids, but want to make an exception on some systems.
- identity::user::manage_home: Creates or deletes the home directory of the user.
- identity::user::manage_dotfiles: If set to true, dofiles from identity::dotfiles_source/$username are
delivered to the users home directory. The files are not purged if they would disapear at the source.
This parameter also wants the parameter
manage_home
to be true.
The hiera keys which hold the users, user_defaults, groups and group_defaults data are specified
in the main class parameters $hiera_*_key
and can be overwritten.
When passing data to the hashes by calling the main class from a Puppet manifest this data has precedence over Hiera data.
---
classes:
- identity
identity::manage_skel: true
identity::skel_source: 'puppet:///modules/identity_data/skel'
identity::dotfiles_source: 'puppet:///modules/identity_data'
user_defaults:
ignore_uid_gid: false
groups:
- users
users:
test.user:
ensure: present
uid: 2001
comment: 'Test User'
password: 'pwhash'
ssh_keys:
main:
key: 'thekey'
groups:
- staff
manage_dotfiles: true
zwei.user:
ensure: present
comment: 'Test User2'
groups:
- staff
All parameters are documented inline. Have a look at the .pp files in manifests/
.
The module is just tested under Ubuntu 16.04, but it should work on other platforms too.
As the module is using the purge_ssh_keys
parameter, it's not tested for
compatibly with Puppet versions below 4.10
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Make sure your PR passes the Rspec tests.