123456789101112131415161718192021222324252627282930313233343536373839 |
- if [[ -z $JVB_AUTH_PASSWORD ]]; then
- echo 'FATAL ERROR: JVB auth password must be set'
- exit 1
- fi
- OLD_JVB_AUTH_PASSWORD=passw0rd
- if [[ "$JVB_AUTH_PASSWORD" == "$OLD_JVB_AUTH_PASSWORD" ]]; then
- echo 'FATAL ERROR: JVB auth password must be changed, check the README'
- exit 1
- fi
- [ -z "${XMPP_SERVER}" ] && export XMPP_SERVER=xmpp.meet.jitsi
- XMPP_SERVER_IP=$(dig +short +search ${XMPP_SERVER})
- export JVB_WS_SERVER_ID_FALLBACK=$(ip route get ${XMPP_SERVER_IP} | grep -oP '(?<=src ).*' | awk '{ print $1 '})
- export LOCAL_ADDRESS=$(ip route get 1 | grep -oP '(?<=src ).*' | awk '{ print $1 '})
- export SENTRY_RELEASE="${SENTRY_RELEASE:-$(apt-cache policy jitsi-videobridge2 | sed -n '/Installed/p' | sed -e 's/[^:]*: //')}"
- if [[ -f /config/custom-sip-communicator.properties ]]; then
- cat /config/custom-sip-communicator.properties > /config/sip-communicator.properties
- fi
- tpl /defaults/logging.properties > /config/logging.properties
- tpl /defaults/jvb.conf > /config/jvb.conf
- chown -R jvb:jitsi /config
- if [[ (-z $ENABLE_COLIBRI_WEBSOCKET || $ENABLE_COLIBRI_WEBSOCKET == "0") && $ENABLE_OCTO == "1" ]]; then
- echo "ERROR: In order to enable Octo relays (with ENABLE_OCTO=1), you MUST enable Colibri websockets (with ENABLE_COLIBRI_WEBSOCKET=1)";
- exit 1;
- fi
|