Really fix lint issues
This commit is contained in:
parent
ac852d2e5b
commit
3d1d7a29dc
@ -7,7 +7,8 @@ class bind (
|
||||
$dnssec = true,
|
||||
$version = '',
|
||||
$rndc = $::bind::params::bind_rndc,
|
||||
) inherits bind::params {
|
||||
) {
|
||||
include params
|
||||
|
||||
$auth_nxdomain = false
|
||||
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
# ex: syntax=puppet si ts=4 sw=4 et
|
||||
|
||||
define bind::key (
|
||||
$secret,
|
||||
$algorithm = 'hmac-sha256',
|
||||
$owner = 'root',
|
||||
$group = $bind::params::bind_group,
|
||||
$secret,
|
||||
) {
|
||||
$keydir = $::bind::keydir::keydir
|
||||
|
||||
|
||||
@ -5,6 +5,6 @@ class bind::keydir (
|
||||
) {
|
||||
file { $keydir:
|
||||
ensure => directory,
|
||||
mode => 0755,
|
||||
mode => '0755',
|
||||
}
|
||||
}
|
||||
|
||||
@ -3,7 +3,9 @@
|
||||
class bind::updater (
|
||||
$nsupdate_package = $::bind::params::nsupdate_package,
|
||||
$keydir = "${::bind::params::confdir}/keys",
|
||||
) inherits bind::params {
|
||||
) {
|
||||
include params
|
||||
|
||||
package {'nsupdate':
|
||||
ensure => present,
|
||||
name => $nsupdate_package,
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
# ex: syntax=puppet si ts=4 sw=4 et
|
||||
|
||||
define bind::zone (
|
||||
$zone_type,
|
||||
$domain = '',
|
||||
$masters = '',
|
||||
$allow_updates = '',
|
||||
@ -13,7 +14,6 @@ define bind::zone (
|
||||
$forwarders = '',
|
||||
$forward = '',
|
||||
$source = '',
|
||||
$zone_type,
|
||||
) {
|
||||
$cachedir = $bind::cachedir
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user