This commit is contained in:
itdoginfo
2024-11-13 16:27:50 +03:00
parent c46984b1e1
commit 4b8223f464

View File

@@ -34,7 +34,6 @@ if [ -f "/etc/init.d/podkop" ]; then
while true; do while true; do
read -r -p '' UPDATE read -r -p '' UPDATE
case $UPDATE in case $UPDATE in
y) y)
echo "Upgraded podkop..." echo "Upgraded podkop..."
break break
@@ -44,6 +43,10 @@ if [ -f "/etc/init.d/podkop" ]; then
add_tunnel add_tunnel
break break
;; ;;
*)
echo "Please enter y or n"
;;
esac esac
done done
else else
@@ -58,12 +61,18 @@ echo "Русский язык интерфейса ставим? y/n (Need a Rus
while true; do while true; do
read -r -p '' RUS read -r -p '' RUS
case $RUS in case $RUS in
y) y)
opkg install $DOWNLOAD_DIR/luci-i18n-podkop-ru*.ipk opkg install $DOWNLOAD_DIR/luci-i18n-podkop-ru*.ipk
break break
;; ;;
n)
break
;;
*)
echo "Please enter y or n"
;;
esac esac
done done