From: Cédric Jeanneret Date: Thu, 27 Dec 2012 09:25:44 +0000 (+0100) Subject: removed require on A record X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=11230d379bd51164ef1c05b3825d229baf196eed;p=puppet-bind.git removed require on A record This require break when we have an external MX, like googleApps or else. As it's an external MX, it's useless (and really NOT recommanded) to manage its A record ;). --- diff --git a/manifests/mx.pp b/manifests/mx.pp index 4404a83..f8ee34d 100644 --- a/manifests/mx.pp +++ b/manifests/mx.pp @@ -28,7 +28,7 @@ define bind::mx ( target => "/etc/bind/pri/${zone}.conf", content => template('bind/mx-record.erb'), notify => Service['bind9'], - require => [Bind::Zone[$zone], Bind::A[$host]], + require => Bind::Zone[$zone], } }