undo: Maybe that'll work around a puppet bug?
authorPeter Palfrader <peter@palfrader.org>
Wed, 2 Mar 2011 18:46:07 +0000 (19:46 +0100)
committerPeter Palfrader <peter@palfrader.org>
Wed, 2 Mar 2011 18:46:07 +0000 (19:46 +0100)
modules/unbound/manifests/init.pp

index a89f783..d412490 100644 (file)
@@ -16,8 +16,6 @@ class unbound {
             group   => unbound,
             mode    => 775,
             ;
-    }
-    file {
         "/var/lib/unbound/root.key":
             ensure  => present,
             replace => false,
@@ -25,10 +23,7 @@ class unbound {
             group   => unbound,
             mode    => 644,
             source  => [ "puppet:///modules/unbound/root.key" ],
-            #notify  => Exec["unbound restart"],
             ;
-    }
-    file {
         "/var/lib/unbound/debian.org.key":
             ensure  => present,
             replace => false,
@@ -36,10 +31,7 @@ class unbound {
             group   => unbound,
             mode    => 644,
             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"],