diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-09 15:45:20 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-09 15:45:20 -0300 | 
| commit | 9032c6dbef4ee87f0b982390e3b5475f299f81cc (patch) | |
| tree | 18044ae356db2654a0ca93b205a8da0642b2c1d1 /manifests | |
| parent | a760f19427738668a9077c10459e370f0a342a73 (diff) | |
| download | puppet-nodo-9032c6dbef4ee87f0b982390e3b5475f299f81cc.tar.gz puppet-nodo-9032c6dbef4ee87f0b982390e3b5475f299f81cc.tar.bz2  | |
Rely just on DNS for the puppet host entry
Diffstat (limited to 'manifests')
| -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}"],      }  | 
