From d8f18bc4f88a3f037922311fb5501ae817545659 Mon Sep 17 00:00:00 2001 From: Nate Riffe Date: Wed, 5 Sep 2012 00:07:39 -0500 Subject: [PATCH] Compatibility with puppetlabs/dhcp --- manifests/key.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/key.pp b/manifests/key.pp index 5fe0249..4fb49c5 100644 --- a/manifests/key.pp +++ b/manifests/key.pp @@ -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", } }