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