From 8176ffb0ccdbda70b4b5bb77b9c371d22b520dff Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Wed, 2 Mar 2011 19:41:27 +0100 Subject: [PATCH] Maybe that'll work around a puppet bug? --- modules/unbound/manifests/init.pp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/unbound/manifests/init.pp b/modules/unbound/manifests/init.pp index 9ef5d9dad..53a2ae9fb 100644 --- a/modules/unbound/manifests/init.pp +++ b/modules/unbound/manifests/init.pp @@ -16,6 +16,8 @@ class unbound { group => unbound, mode => 775, ; + } + file { "/var/lib/unbound/root.key": ensure => present, replace => false, @@ -25,6 +27,8 @@ class unbound { source => [ "puppet:///modules/unbound/root.key" ], notify => Exec["unbound restart"], ; + } + file { "/var/lib/unbound/debian.org.key": ensure => present, replace => false, @@ -34,6 +38,8 @@ class unbound { source => [ "puppet:///modules/unbound/debian.org.key" ], notify => Exec["unbound restart"], ; + } + file { "/etc/unbound/unbound.conf": content => template("unbound/unbound.conf.erb"), require => Package["unbound"], -- 2.20.1