10-config 459 B

123456789101112131415
  1. #!/usr/bin/with-contenv bash
  2. if [[ ! -f /config/sip-communicator.properties ]]; then
  3. cp /defaults/sip-communicator.properties /config
  4. sed -i \
  5. -e "s,\${XMPP_DOMAIN},$XMPP_DOMAIN,g" \
  6. -e "s,\${JICOFO_AUTH_USER},$JICOFO_AUTH_USER,g" \
  7. -e "s#\${JVB_STUN_SERVERS}#$JVB_STUN_SERVERS#g" \
  8. /config/sip-communicator.properties
  9. fi
  10. if [[ ! -f /config/logging.properties ]]; then
  11. cp /defaults/logging.properties /config
  12. fi