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