Fix a bunch of warnings whne using the bind::updater class by moving confdir to the params class. In order for this to work, the bind and bind::updater classes both now inherit from params. Also, fix the default value for managed_key_directory to something that's actually falsey.
17 lines
297 B
Puppet
17 lines
297 B
Puppet
# ex: syntax=puppet si ts=4 sw=4 et
|
|
|
|
class bind::params (
|
|
$supported,
|
|
$bind_user,
|
|
$bind_group,
|
|
$bind_package,
|
|
$bind_service,
|
|
$nsupdate_package,
|
|
$managed_keys_directory = undef,
|
|
$confdir,
|
|
) {
|
|
unless $supported {
|
|
fail('Platform is not supported')
|
|
}
|
|
}
|