projects
/
mirror
/
dsa-puppet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d49c568
)
Do not notify rehash on update of chains
author
Peter Palfrader
<peter@palfrader.org>
Fri, 28 Feb 2014 18:10:49 +0000
(18:10 +0000)
committer
Peter Palfrader
<peter@palfrader.org>
Fri, 28 Feb 2014 18:10:49 +0000
(18:10 +0000)
modules/ssl/manifests/service.pp
patch
|
blob
|
history
diff --git
a/modules/ssl/manifests/service.pp
b/modules/ssl/manifests/service.pp
index
5c2509a
..
54a4110
100644
(file)
--- 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 {