]> git.donarmstrong.com Git - dsa-puppet.git/commitdiff
Do not notify rehash on update of chains
authorPeter Palfrader <peter@palfrader.org>
Fri, 28 Feb 2014 18:10:49 +0000 (18:10 +0000)
committerPeter Palfrader <peter@palfrader.org>
Fri, 28 Feb 2014 18:10:49 +0000 (18:10 +0000)
modules/ssl/manifests/service.pp

index 5c2509af1e82cfac6ed384916f69fa8210b3be3b..54a4110d8387162cf3ff47a70e2a6cd3094e9fa5 100644 (file)
@@ -11,12 +11,12 @@ define ssl::service($ensure = present, $tlsaport = 443, $notify = []) {
        }
        file { "/etc/ssl/debian/certs/$name.crt-chain":
                source => [ "puppet:///modules/ssl/chains/${name}.crt", "puppet:///modules/ssl/servicecerts/${name}.crt" ],
-               notify => [ Exec['refresh_debian_hashes'], $notify ],
+               notify => [ $notify ],
                links  => follow,
        }
        file { "/etc/ssl/debian/certs/$name.crt-chained":
                content => template('ssl/chained.erb'),
-               notify => [ Exec['refresh_debian_hashes'], $notify ],
+               notify => [ $notify ],
        }
 
        if $tlsaport > 0 {