From: Silvio Rhatto Date: Sun, 9 Mar 2014 18:45:20 +0000 (-0300) Subject: Rely just on DNS for the puppet host entry X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=9032c6dbef4ee87f0b982390e3b5475f299f81cc;p=puppet-nodo.git Rely just on DNS for the puppet host entry --- 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}"], }