deployment: Minor fix detect-external-ip.sh

pull/648/head
cruizba 2021-07-14 10:26:11 +02:00
parent d62b6e4e14
commit 5a32f41b51
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ fi
# Shortcut to use internal IP as external IP: COTURN_INTERNAL_RELAY
# ==========================
if [ -n "${COTURN_INTERNAL_RELAY}" ] && [ "${COTURN_INTERNAL_RELAY}" = "true" ]; then
if [ -n "${COTURN_INTERNAL_RELAY:-}" ] && [ "${COTURN_INTERNAL_RELAY:-}" = "true" ]; then
discover-internal-ip.sh
exit 0
fi