Puppet Class: lsys::hardening::params
- Inherited by:
-
lsys::hardening::shadow_utils
- Defined in:
- manifests/hardening/params.pp
Summary
Parameters for shadow-utils toolsOverview
Parameters to control the behavior of the tools from the shadow-utils component
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/hardening/params.pp', line 8
class lsys::hardening::params {
case $facts['os']['release']['major'] {
'6': {
$uid_min = 500
$gid_min = 500
$system_accounts = false
}
default: {
$uid_min = 1000
$gid_min = 1000
$system_accounts = true
}
}
}
|