diff options
author | elijah <elijah@riseup.net> | 2015-04-06 10:50:49 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2015-04-06 10:50:49 -0700 |
commit | ee9fdf0d965cc24a0f421b588b702e1c07caeccf (patch) | |
tree | 0f3ce1a1f7e68e8180f637d25e944c138dcf08a1 /puppet/modules | |
parent | 89d3c35925b673ed210c466d7bfa0a5ac5b1ab74 (diff) | |
parent | f8c359d8795d216dd5ce1cc9e3e14b3b7933a718 (diff) |
Merge branch 'bugfix/static' into develop
Diffstat (limited to 'puppet/modules')
-rw-r--r-- | puppet/modules/site_static/manifests/domain.pp | 15 |
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') |