rego-tunnel: fix exit 0 causing container restart loop
Some checks failed
Test / test (push) Has been cancelled

Changed exit 0 to return 0 in vpn_scripts/start.sh.
When the script is sourced via entrypoint, exit terminates
the parent shell before the Windows VM entry.sh can run.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-19 08:16:07 +00:00
parent f878882718
commit 20b55311f1

View File

@@ -110,4 +110,4 @@ get_container_ip() {
echo "[rego-tunnel] SOCKS5 proxy available at $CONTAINER_IP:1080" echo "[rego-tunnel] SOCKS5 proxy available at $CONTAINER_IP:1080"
) & ) &
exit 0 return 0