Make manual configuration possible

This commit is contained in:
Nate Riffe 2012-10-06 16:40:59 -05:00
parent 474b6f6967
commit 42a5e99f87
2 changed files with 11 additions and 0 deletions

View File

@ -59,6 +59,15 @@ class bind (
require => Package[$bind::params::bind_package],
}
file { "${confdir}/named.conf.local":
ensure => present,
owner => 'root',
group => $bind::params::bind_group,
mode => '0644',
replace => false,
require => Package[$bind::params::bind_package],
}
concat { [
"${confdir}/acls.conf",
"${confdir}/keys.conf",

View File

@ -21,3 +21,5 @@ options {
version "<%= version %>";
<%- end -%>
};
include "<%= confdir %>/named.conf.local";