Debian supplies the bind keys at /etc/bind/bind.keys and RedHat supplies it at /etc/named.iscdlv.key. Add the directive that references this file. I think it may have "just worked" on Debian, baesd on the information at https://www.isc.org/downloads/bind/bind-keys/
27 lines
839 B
Puppet
27 lines
839 B
Puppet
# ex: syntax=puppet si ts=4 sw=4 et
|
|
|
|
class bind::defaults (
|
|
$supported = undef,
|
|
$confdir = undef,
|
|
$namedconf = undef,
|
|
$cachedir = undef,
|
|
$logdir = undef,
|
|
$random_device = undef,
|
|
$bind_user = undef,
|
|
$bind_group = undef,
|
|
$bind_package = undef,
|
|
$bind_service = undef,
|
|
$nsupdate_package = undef,
|
|
$managed_keys_directory = undef,
|
|
$default_zones_include = undef,
|
|
$default_zones_source = undef,
|
|
$isc_bind_keys = undef,
|
|
) {
|
|
unless is_bool($supported) {
|
|
fail('Please ensure that the dependencies of the bind module are installed and working correctly')
|
|
}
|
|
unless $supported {
|
|
fail('Platform is not supported')
|
|
}
|
|
}
|