From a825d58c548e032db011cb944bb4725fa3b90e74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9=20=D0=91=D0=BE=D0=B1?= =?UTF-8?q?=D1=8B=D1=80=D0=B5=D0=B2?= Date: Tue, 28 Apr 2026 20:40:52 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20escape=20\.=20=D0=B2=20f-=D1=81=D1=82?= =?UTF-8?q?=D1=80=D0=BE=D0=BA=D0=B5=20(SyntaxWarning)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/main.py b/server/main.py index 421492a..9d49ad6 100644 --- a/server/main.py +++ b/server/main.py @@ -757,7 +757,7 @@ DONE=0 RCI_BASE="" AUTH="" # Собираем все локальные IPv4 (кроме 127.x) из ip addr -_local_ips=$(ip addr show 2>/dev/null | grep 'inet ' | awk '{{print $2}}' | cut -d/ -f1 | grep -v '^127\.') +_local_ips=$(ip addr show 2>/dev/null | grep 'inet ' | awk '{{print $2}}' | cut -d/ -f1 | grep -v '^127\\.') for _ip in 127.0.0.1 $_local_ips; do _auth=$(curl -s --connect-timeout 2 "http://$_ip/auth" 2>/dev/null) if printf '%s' "$_auth" | grep -q '"realm"'; then