From dc4a08ef7807ea9e9f6afbf9a05348fa677b00cf Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Thu, 4 Apr 2024 14:39:24 +0200 Subject: [PATCH] fix SC Signed-off-by: Simon L --- Containers/nextcloud/entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Containers/nextcloud/entrypoint.sh b/Containers/nextcloud/entrypoint.sh index 50991106..be057297 100644 --- a/Containers/nextcloud/entrypoint.sh +++ b/Containers/nextcloud/entrypoint.sh @@ -638,6 +638,7 @@ if [ "$TALK_ENABLED" = 'yes' ]; then fi # Based on https://github.com/nextcloud/spreed/issues/960#issuecomment-416993435 if [ -z "$(php /var/www/html/occ talk:turn:list --output="plain")" ]; then + # shellcheck disable=SC2153 php /var/www/html/occ talk:turn:add turn "$TALK_HOST:$TALK_PORT" "udp,tcp" --secret="$TURN_SECRET" fi STUN_SERVER="$(php /var/www/html/occ talk:stun:list --output="plain")"