Przeglądaj źródła

fix waitnet timeout error

rufengsuixing 5 lat temu
rodzic
commit
004d06bbc2
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      root/usr/share/AdGuardHome/waitnet.sh

+ 1 - 1
root/usr/share/AdGuardHome/waitnet.sh

@@ -26,7 +26,7 @@ do
 	fi
 	sleep 5
 	count=$((count+1))
-	if [ $count > 18 ]; then
+	if [ $count -gt 18 ]; then
 		/etc/init.d/AdGuardHome reload
 		break
 	fi