puppet-bind/manifests/acl.pp
2014-06-15 10:08:55 -05:00

14 lines
256 B
Puppet

# ex: syntax=puppet si ts=4 sw=4 et
define bind::acl (
$addresses,
) {
concat::fragment { "bind-acl-${name}":
order => '10',
target => "${bind::params::confdir}/acls.conf",
content => template('bind/acl.erb'),
}
}