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