Compatibility with puppetlabs/dhcp

This commit is contained in:
Nate Riffe 2012-09-05 00:07:39 -05:00
parent a62f9dd107
commit d8f18bc4f8

View File

@ -2,7 +2,7 @@ define bind::key (
$algorithm = 'hmac-sha256',
$secret,
) {
file { "${bind::confdir}/keys/${name}.conf":
file { "${bind::confdir}/keys/${name}":
ensure => present,
owner => 'root',
group => $bind::params::bind_group,
@ -13,6 +13,6 @@ define bind::key (
concat::fragment { "bind-key-${name}":
order => '10',
target => "${bind::confdir}/keys.conf",
content => "include \"${bind::confdir}/keys/${name}.conf\";\n",
content => "include \"${bind::confdir}/keys/${name}\";\n",
}
}