diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-07-14 22:11:16 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-07-14 22:11:16 -0300 |
commit | f4905e39e09ce720aece3e2bc36fc94fb2614606 (patch) | |
tree | d68d37cf1a410072dd9d6172ac22a312a016c2c9 | |
parent | 12d070f36bbd4d1213f6f77359032023b61dfcfc (diff) | |
download | puppet-ssl-f4905e39e09ce720aece3e2bc36fc94fb2614606.tar.gz puppet-ssl-f4905e39e09ce720aece3e2bc36fc94fb2614606.tar.bz2 |
Notifying postfinx and nginx on cert change
-rw-r--r-- | manifests/init.pp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index f5f007a..93f2693 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -26,7 +26,18 @@ class ssl { class ssl::mail inherits ssl { File['/etc/ssl/private/cert.pem'] { - group => postfix, - mode => 0640, + group => postfix, + mode => 0640, + notify => Service['postfix'], + } + + File['/etc/ssl/certs/cert.crt'] { + notify => Service['postfix'], + } +} + +class ssl::proxy inherits ssl { + File['/etc/ssl/certs/cert.crt', '/etc/ssl/private/cert.pem'] { + notify => Service['nginx'], } } |