aboutsummaryrefslogtreecommitdiff
path: root/manifests/jabber.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-05-13 00:37:49 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-05-13 00:37:49 -0300
commit0cf7cfcb49f3a6cb88b6d7b1fe4ad13c03a19d03 (patch)
tree810cf385b4a6971283340e4d0f6c8b4235656b23 /manifests/jabber.pp
parenta67af7936d0d43cd37f6f55fa3b8133bf285d121 (diff)
downloadpuppet-nodo-0cf7cfcb49f3a6cb88b6d7b1fe4ad13c03a19d03.tar.gz
puppet-nodo-0cf7cfcb49f3a6cb88b6d7b1fe4ad13c03a19d03.tar.bz2
Jabber cert file
Diffstat (limited to 'manifests/jabber.pp')
-rw-r--r--manifests/jabber.pp9
1 files changed, 8 insertions, 1 deletions
diff --git a/manifests/jabber.pp b/manifests/jabber.pp
index 5655ec4..2a8142f 100644
--- a/manifests/jabber.pp
+++ b/manifests/jabber.pp
@@ -2,7 +2,14 @@ class nodo::jabber inherits nodo::vserver {
include ssl
include ejabberd
- ssl::cert { "cert":
+ # We use a concatenated cert file
+ # http://site4fast.blogspot.com.br/2011/10/ejabberd-ssl-how-to.html
+ ssl::cert { "cert-concat":
notify => Service['ejabberd'],
}
+
+ # TODO: remove in the future
+ ssl::cert { "cert":
+ ensure => absent,
+ }
}