puppet-bind/manifests/acl.pp
2012-09-03 18:24:06 -05:00

12 lines
192 B
Puppet

define bind::acl (
$addresses,
) {
concat::fragment { "bind-acl-${name}":
order => '10',
target => "${bind::params::confdir}/acls.conf",
content => template('bind/acl.erb'),
}
}