blob: 2a8142fc799278d144f6f8001864c35af134b399 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class nodo::jabber inherits nodo::vserver {
include ssl
include ejabberd
# 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,
}
}
|