From 7177ded8f2093bac0a49029eca5e4bfe09da1097 Mon Sep 17 00:00:00 2001 From: mathias Date: Sun, 10 Jun 2018 08:41:30 +0300 Subject: [PATCH] Remove parameter --- bin/start | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/start b/bin/start index e7bd434..c2861e8 100755 --- a/bin/start +++ b/bin/start @@ -1,6 +1,6 @@ #!/bin/bash while true; do - ssh -i .key -o StrictHostKeyChecking=no -o ServerAliveInterval=30 -o ServerAliveCountMax=9999 -f -S none -N -T -R 64518:localhost:25565 serv@kaboom.pw > /dev/null 2>&1 + ssh -i .key -o StrictHostKeyChecking=no -o ServerAliveInterval=30 -o ServerAliveCountMax=9999 -S none -N -T -R 64518:localhost:25565 serv@kaboom.pw > /dev/null 2>&1 sleep 1 done &