aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
+ }
}