Sfoglia il codice sorgente

fix waitnet timeout error

rufengsuixing 5 anni fa
parent
commit
004d06bbc2
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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