Puppet Class: ibm_profile::iib_machine::groups_and_users
- Inherits:
- ibm_profile
- Defined in:
- manifests/iib_machine/groups_and_users.pp
Summary
This class is the default implementation for creating the required OS users and groups for the installation of IIB.Overview
--
ibm_profile::iib_machine::groups_and_users
Using hiera, you can customize some of the aspects of this process.
When these customizations aren’t enough, you can replace the class with your own class. See [ibm_profile::iib_machine](./iib_machine.html) for an explanation on how to do this.
–++–
35 36 37 38 39 40 41 42 43 44 45 |
# File 'manifests/iib_machine/groups_and_users.pp', line 35
class ibm_profile::iib_machine::groups_and_users(
Hash $users,
Hash $groups,
) inherits ibm_profile {
echo {'IIB Groups and Users':
withpath => false,
}
$defaults = { 'ensure' => 'present'}
ensure_resources('user', $users, $defaults )
ensure_resources('group', $groups, $defaults)
}
|