fix(secubox-p2p): Remove invalid 'local' in case statement

BusyBox ash doesn't support 'local' keyword outside functions.
This was causing health_check RPC to hang with no response.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
CyberMind-FR 2026-02-13 08:40:14 +01:00
parent e52fdfc299
commit c1fa622eee

View File

@ -208,9 +208,9 @@ EOF
;;
health_check)
local peers_online=0
local peers_total=0
local services_running=0
peers_online=0
peers_total=0
services_running=0
# Count online peers
if [ -f /tmp/secubox-p2p-peers.json ]; then