From 5f3d2cad26ec52c233df4837853575ed2135be0c Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Wed, 29 Jan 2025 12:52:32 -0600 Subject: [PATCH] ssssh --- tunnel/src/tunnel.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tunnel/src/tunnel.nim b/tunnel/src/tunnel.nim index d08ea94..d35d31c 100644 --- a/tunnel/src/tunnel.nim +++ b/tunnel/src/tunnel.nim @@ -10,7 +10,7 @@ proc activateTunnel(name: string, port: int) = echo "activating connection to: ", name if not check(name): startSsh(name) - quit execCmd &"""ssh -fNL "{port}:localhost:{port}" {name}""" + quit execCmd &"""ssh -fqNL "{port}:localhost:{port}" {name}""" proc deactivateTunnels(name: string) = echo "deactivating connection to: ", name