diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-08-18 15:37:15 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-08-18 15:37:15 -0300 |
commit | f620f040d90f29380a5760e51d5e64f7db5aa50d (patch) | |
tree | 6610c629b94a44a5a99ba9ec4b29e5d90f6005ac | |
parent | fa66d16ad547f68655b4eab9672592d63821e8ca (diff) | |
download | puppet-bind-f620f040d90f29380a5760e51d5e64f7db5aa50d.tar.gz puppet-bind-f620f040d90f29380a5760e51d5e64f7db5aa50d.tar.bz2 |
Fixing file parameter from concatfilepart
-rw-r--r-- | manifests/definitions/bind-mx.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/definitions/bind-mx.pp b/manifests/definitions/bind-mx.pp index 84a2b9f..f92ea16 100644 --- a/manifests/definitions/bind-mx.pp +++ b/manifests/definitions/bind-mx.pp @@ -25,7 +25,7 @@ define bind::mx($ensure=present, } common::concatfilepart{"bind.${name}": - file => "/etc/bind/pri/${zone}", + file => "/etc/bind/pri/${zone}.conf", ensure => $ensure, notify => Service["bind9"], content => template("bind/mx-record.erb"), |