Really fix lint issues

This commit is contained in:
Nate Riffe 2014-12-12 07:33:00 -06:00
parent ac852d2e5b
commit 3d1d7a29dc
5 changed files with 8 additions and 5 deletions

View File

@ -7,7 +7,8 @@ class bind (
$dnssec = true,
$version = '',
$rndc = $::bind::params::bind_rndc,
) inherits bind::params {
) {
include params
$auth_nxdomain = false

View File

@ -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

View File

@ -5,6 +5,6 @@ class bind::keydir (
) {
file { $keydir:
ensure => directory,
mode => 0755,
mode => '0755',
}
}

View File

@ -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,

View File

@ -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