From: Peter Palfrader Date: Fri, 28 Feb 2014 18:10:49 +0000 (+0000) Subject: Do not notify rehash on update of chains X-Git-Url: https://git.donarmstrong.com/?p=dsa-puppet.git;a=commitdiff_plain;h=a0e93ddf3ef140b48e49d1342273e650a122beda Do not notify rehash on update of chains --- diff --git a/modules/ssl/manifests/service.pp b/modules/ssl/manifests/service.pp index 5c2509af..54a4110d 100644 --- a/modules/ssl/manifests/service.pp +++ b/modules/ssl/manifests/service.pp @@ -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 {