summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2015-04-02 15:46:16 -0700
committerelijah <elijah@riseup.net>2015-04-02 15:46:16 -0700
commitf8c359d8795d216dd5ce1cc9e3e14b3b7933a718 (patch)
treee580a2d2af506dd370017dfbaa495cf73ec67708
parenteeb5fd763d7f78d6dcff252981cc9e38dd446fa6 (diff)
static: restart apache when tls certs change
-rw-r--r--puppet/modules/site_static/manifests/domain.pp15
1 files changed, 12 insertions, 3 deletions
diff --git a/puppet/modules/site_static/manifests/domain.pp b/puppet/modules/site_static/manifests/domain.pp
index 6941b1a3..b9177f25 100644
--- a/puppet/modules/site_static/manifests/domain.pp
+++ b/puppet/modules/site_static/manifests/domain.pp
@@ -12,9 +12,18 @@ define site_static::domain (
create_resources(site_static::location, $locations)
- x509::cert { $domain: content => $cert }
- x509::key { $domain: content => $key }
- x509::ca { "${domain}_ca": content => $ca_cert }
+ x509::cert { $domain:
+ content => $cert,
+ notify => Service[apache]
+ }
+ x509::key { $domain:
+ content => $key,
+ notify => Service[apache]
+ }
+ x509::ca { "${domain}_ca":
+ content => $ca_cert,
+ notify => Service[apache]
+ }
apache::vhost::file { $domain:
content => template('site_static/apache.conf.erb')