Explorar o código

Part two of fix to GitHub issue #118 -- need to test thoroughly though.

Adam Ierymenko %!s(int64=10) %!d(string=hai) anos
pai
achega
7943414c89
Modificáronse 1 ficheiros con 23 adicións e 2 borrados
  1. 23 2
      ext/installfiles/linux/init.d/zerotier-one

+ 23 - 2
ext/installfiles/linux/init.d/zerotier-one

@@ -65,6 +65,17 @@ case "$1" in
 		if [ $running -gt 0 ]; then
 			echo "Stopping ZeroTier One..."
 			kill -TERM $pid
+			sleep 0.25
+			if [ -f "$zthome/zerotier-one.pid" ]; then
+				sleep 0.5
+			fi
+			if [ -f "$zthome/zerotier-one.pid" ]; then
+				sleep 1
+			fi
+			if [ -f "$zthome/zerotier-one.pid" ]; then
+				kill -KILL $pid >>/dev/null 2>&1
+				rm -f "$zthome/zerotier-one.pid"
+			fi
 		else
 			echo "ZeroTier One is not running."
 		fi
@@ -72,9 +83,19 @@ case "$1" in
 	restart|reload|force-reload|condrestart|try-restart)
 		echo "Restarting ZeroTier One..."
 		if [ $running -gt 0 ]; then
-			kill -TERM $pid
+			kill -TERM $pid >>/dev/null 2>&1
+		fi
+		sleep 0.25
+		if [ -f "$zthome/zerotier-one.pid" ]; then
+			sleep 0.5
+		fi
+		if [ -f "$zthome/zerotier-one.pid" ]; then
+			sleep 1
+		fi
+		if [ -f "$zthome/zerotier-one.pid" ]; then
+			kill -KILL $pid >>/dev/null 2>&1
+			rm -f "$zthome/zerotier-one.pid"
 		fi
-		while [ -f "$zthome/zerotier-one.pid" ]; do sleep 1; done
 		zerotier-one -d
 		;;
 	status)