From: Peter Palfrader Date: Wed, 2 Mar 2011 18:41:27 +0000 (+0100) Subject: Maybe that'll work around a puppet bug? X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=8176ffb0ccdbda70b4b5bb77b9c371d22b520dff;p=mirror%2Fdsa-puppet.git Maybe that'll work around a puppet bug? --- 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"],