diff --git a/doc/puppet_classes/puppet_cd_3A_3Amain_3A_3Aconfig.html b/doc/puppet_classes/puppet_cd_3A_3Amain_3A_3Aconfig.html index eb68abc..72aa795 100644 --- a/doc/puppet_classes/puppet_cd_3A_3Amain_3A_3Aconfig.html +++ b/doc/puppet_classes/puppet_cd_3A_3Amain_3A_3Aconfig.html @@ -123,11 +123,7 @@ 25 26 27 -28 -29 -30 -31 -32 +28
# File 'manifests/main/config.pp', line 6
@@ -136,14 +132,10 @@ class puppet_cd::main::config (
) inherits puppet_cd::params {
- # test
- # Debug all facts
- #notify { "All facts: ${facts} ": }
-
- #if $facts['fqdn'] == $server_facts['servername'] {
- # notify { "This is the Puppet master node": }
- #}
+ if $facts['fqdn'] == $server_facts['servername'] {
+ notify { "This is the Puppet master node": }
+ }
#if $fqdn == $pt_puppetmaster {
# notify {"Me Puppetmasster":}
@@ -156,7 +148,7 @@ class puppet_cd::main::config (
# Notify the node's FQDN
#notify { "This node's FQDN is ${facts['fqdn']}": }
-notify { " FQDN is $fqdn": }
+notify { " FQDN is ${fqdn}": }
}