puppet-bind/manifests/updater.pp
Nate Riffe a66b985adb Fix up bind::updater and support rndc
I thought I fixed rndc a while ago... not quite. Do it now. Make bind::updater
actually work (incomplete last time)
2014-06-27 14:43:46 -05:00

20 lines
433 B
Puppet

# ex: syntax=puppet si ts=4 sw=4 et
class bind::updater (
$nsupdate_package = $::bind::params::nsupdate_package,
$keydir = "${::bind::params::confdir}/keys",
) inherits bind::params {
package {'nsupdate':
name => $nsupdate_package,
ensure => present,
}
file { $::bind::params::confdir:
ensure => directory,
}
class { 'bind::keydir':
keydir => $keydir,
}
}