summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorCédric Jeanneret <cedric.jeanneret@camptocamp.com>2012-12-27 10:25:44 +0100
committerCédric Jeanneret <cedric.jeanneret@camptocamp.com>2012-12-27 10:25:44 +0100
commit11230d379bd51164ef1c05b3825d229baf196eed (patch)
treeedb322d797770f42e82762df58302325c346e821 /manifests
parent6e57c53d0aa2473461d56b8e4479ca77f22c52dc (diff)
downloadpuppet-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')
-rw-r--r--manifests/mx.pp2
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],
}
}