Previous iterations and even a release were all broken. The module works again, sorry for the interlude. - Giving up on params and moving to module_data (WIP) - Change the Package and Service references to the static 'bind' name - Add a meager amount of test coverage
19 lines
345 B
Puppet
19 lines
345 B
Puppet
# ex: syntax=puppet si ts=4 sw=4 et
|
|
|
|
class bind::updater (
|
|
$keydir = undef,
|
|
) {
|
|
include params
|
|
|
|
if $::bind::params::nsupdate_package {
|
|
package { 'nsupdate':
|
|
ensure => present,
|
|
name => $::bind::params::nsupdate_package,
|
|
}
|
|
}
|
|
|
|
class { 'bind::keydir':
|
|
keydir => $keydir,
|
|
}
|
|
}
|