Puppet Class: system_users::root_group
- Defined in:
- manifests/root_group.pp
Overview
System_users::root_group
Set the group for the root
user to be GID 0
4 5 6 7 8 |
# File 'manifests/root_group.pp', line 4
class system_users::root_group {
user { "root":
gid => 0,
}
}
|