puppet-bind/manifests/view.pp
2012-09-03 22:06:07 -05:00

15 lines
334 B
Puppet

define bind::view (
$match_clients = [ 'any' ],
$match_destinations = [],
$zones = [],
$recursion = true,
) {
$confdir = $bind::params::confdir
concat::fragment { "bind-view-${name}":
order => '10',
target => "${bind::params::confdir}/views.conf",
content => template('bind/view.erb'),
}
}