Puppet Class: system_users::root_group
- Defined in:
- manifests/root_group.pp
Summary
Set the group for the `root` user to be GID 0Overview
Manage the ‘gid` of the `root` user and nothing else
Note:
incompatible with ‘system_users::root`
6 7 8 9 10 |
# File 'manifests/root_group.pp', line 6
class system_users::root_group {
user { "root":
gid => 0,
}
}
|