diff options
author | Cédric Jeanneret <cedric.jeanneret@camptocamp.com> | 2010-11-08 16:15:43 +0100 |
---|---|---|
committer | Cédric Jeanneret <cedric.jeanneret@camptocamp.com> | 2010-11-15 14:21:11 +0100 |
commit | e0f517634bb58ec8e9f396ff489eb8a9efc73ee0 (patch) | |
tree | be170e0483c52b6bd36a085a957f20ea30975482 /manifests/definitions/bind-mx.pp | |
download | puppet-bind-e0f517634bb58ec8e9f396ff489eb8a9efc73ee0.tar.gz puppet-bind-e0f517634bb58ec8e9f396ff489eb8a9efc73ee0.tar.bz2 |
(bind) initial import
Doc will be added later.
Diffstat (limited to 'manifests/definitions/bind-mx.pp')
-rw-r--r-- | manifests/definitions/bind-mx.pp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/definitions/bind-mx.pp b/manifests/definitions/bind-mx.pp new file mode 100644 index 0000000..7eb63d0 --- /dev/null +++ b/manifests/definitions/bind-mx.pp @@ -0,0 +1,16 @@ +define bind::mx($ensure=present, + $zone, + $owner, + $priority, + $host, + $ttl=false) { + + common::concatfilepart{"bind.${name}": + file => "/etc/bind/pri/${zone}", + ensure => $ensure, + notify => Service["bind9"], + content => template("bind/mx-record.erb"), + require => Bind::Zone[$zone], + } +} + |