blob: 31c8f6570a7ead6bdbf2949d67123b043fd994af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
post_install() {
cat << __EOF__
The configs are located here:
- /etc/jicofo-nightly
__EOF__
}
post_upgrade() {
cat <<__EOF__
Jicofo config is now set in jicofo.conf.
You need to set:
jicofo {
xmpp: {
client: {
client-proxy: "focus.YOUR_DOMAIN"
xmpp-domain: "YOUR_DOMAIN"
domain: "auth.YOUR_DOMAIN"
username: "focus"
password: "FOCUS_PASSWORD"
}
trusted-domains: [ "recorder.YOUR_DOMAIN" ]
}
bridge: {
brewery-jid: "JvbBrewery@internal.auth.YOUR_DOMAIN"
}
}
__EOF__
}
|