Puppet Class: profile_guard::lockdown::group
- Defined in:
- manifests/lockdown/group.pp
Overview
Profile_guard::Linux::Group
noop_mode wrapper arround r_profile::lockdown::group
6 7 8 9 10 11 12 13 14 |
# File 'manifests/lockdown/group.pp', line 6
class profile_guard::lockdown::group(
$noop_mode = hiera('profile_guard::lockdown::group::noop_mode', true)
) {
if $noop_mode {
noop()
}
include r_profile::lockdown::group
}
|