summarylogtreecommitdiffstats
path: root/install
blob: 7ba8ace045ef49d3b99b165f2cfe584c707aca3c (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
__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__
}