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