diff options
-rw-r--r-- | manifests/role/master.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/role/master.pp b/manifests/role/master.pp index abeec24..a595d9b 100644 --- a/manifests/role/master.pp +++ b/manifests/role/master.pp @@ -17,8 +17,10 @@ class nodo::role::master { # The main master has a host entry pointing to itself, other # masters still retrieve catalogs from the main master. + # + # For that we're relying just on DNS entries. host { "puppet": - ensure => present, + ensure => absent, ip => "127.0.0.1", host_aliases => ["puppet.${::domain}"], } |