puppet-bind/manifests/keydir.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

11 lines
194 B
Puppet

# ex: syntax=puppet si ts=4 sw=4 et
class bind::keydir (
$keydir = "${::bind::params::confdir}/keys",
) {
file { $keydir:
ensure => directory,
mode => 0755,
}
}