From c6fa96f75cf5d90aee98daf0a8115ebceeda0846 Mon Sep 17 00:00:00 2001 From: alisaklak Date: Wed, 29 Oct 2025 17:46:02 +0300 Subject: [PATCH] Replace grep -P with grep -E to avoid illegal instruction on non-AVX CPUs in Talk container --- Containers/talk/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/talk/start.sh b/Containers/talk/start.sh index f89949f3..ba05ccee 100644 --- a/Containers/talk/start.sh +++ b/Containers/talk/start.sh @@ -19,7 +19,7 @@ elif [ -z "$INTERNAL_SECRET" ]; then fi set -x -IPv4_ADDRESS_TALK_RELAY="$(hostname -i | grep -oP '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | head -1)" +IPv4_ADDRESS_TALK_RELAY="$(hostname -i | grep -oE '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | head -1)" # shellcheck disable=SC2153 IPv4_ADDRESS_TALK="$(dig "$TALK_HOST" IN A +short +search | grep '^[0-9.]\+$' | sort | head -n1)" # shellcheck disable=SC2153