diff options
author | Cédric Jeanneret <cedric.jeanneret@camptocamp.com> | 2012-12-27 10:25:44 +0100 |
---|---|---|
committer | Cédric Jeanneret <cedric.jeanneret@camptocamp.com> | 2012-12-27 10:25:44 +0100 |
commit | 11230d379bd51164ef1c05b3825d229baf196eed (patch) | |
tree | edb322d797770f42e82762df58302325c346e821 /manifests/mx.pp | |
parent | 6e57c53d0aa2473461d56b8e4479ca77f22c52dc (diff) | |
download | puppet-bind-11230d379bd51164ef1c05b3825d229baf196eed.tar.gz puppet-bind-11230d379bd51164ef1c05b3825d229baf196eed.tar.bz2 |
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 ;).
Diffstat (limited to 'manifests/mx.pp')
-rw-r--r-- | manifests/mx.pp | 2 |
1 files changed, 1 insertions, 1 deletions
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], } } |