change has_zone_file to false for the stub zone type as stub zones will create their own file based on results from the master servers for that zone

This commit is contained in:
Trevor Smith 2015-03-19 13:35:55 -04:00
parent 84bf840495
commit 80e3e6e55c

View File

@ -28,7 +28,7 @@ define bind::zone (
'master' => true,
'slave' => true,
'hint' => true,
'stub' => true,
'stub' => false,
default => false,
}
@ -79,7 +79,7 @@ define bind::zone (
}
}
}
file { "${bind::confdir}/zones/${name}.conf":
ensure => present,
owner => 'root',