install.sh: openwrt-18.06 is no longer supported
Signed-off-by: sbwml <admin@cooluc.com>
This commit is contained in:
parent
7f3cdca7a6
commit
d0111602ec
13
install.sh
13
install.sh
@ -15,6 +15,13 @@ else
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# check
|
||||||
|
if [ ! -d "/usr/share/luci/menu.d" ]; then
|
||||||
|
echo -e "${RED_COLOR}OpenWrt LuCI version is not supports.${RES}"
|
||||||
|
echo -e "${RED_COLOR}Minimum OpenWrt Version: openwrt-21.02 or latest${RES}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# temp
|
# temp
|
||||||
temp_dir=$(mktemp -d) || exit 1
|
temp_dir=$(mktemp -d) || exit 1
|
||||||
|
|
||||||
@ -24,7 +31,7 @@ country_code=$(echo $ip_info | sed -r 's/.*country_code":"([^"]*).*/\1/')
|
|||||||
if [ $country_code = "CN" ]; then
|
if [ $country_code = "CN" ]; then
|
||||||
google_status=$(curl -I -4 -m 3 -o /dev/null -s -w %{http_code} http://www.google.com/generate_204)
|
google_status=$(curl -I -4 -m 3 -o /dev/null -s -w %{http_code} http://www.google.com/generate_204)
|
||||||
if [ ! $google_status = "204" ];then
|
if [ ! $google_status = "204" ];then
|
||||||
mirror="https://gh.cooluc.com/"
|
mirror="https://mirror.ghproxy.com/"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -41,10 +48,6 @@ CHECK() (
|
|||||||
if [[ ! $verif ]]; then
|
if [[ ! $verif ]]; then
|
||||||
echo -e "${RED_COLOR}Error! The current \"$platform\" platform is not currently supported.${RES}"
|
echo -e "${RED_COLOR}Error! The current \"$platform\" platform is not currently supported.${RES}"
|
||||||
exit 1;
|
exit 1;
|
||||||
else
|
|
||||||
echo -e "${GREEN_COLOR}Install luci-compat ...${RES}\n"
|
|
||||||
opkg update
|
|
||||||
opkg install luci-compat
|
|
||||||
fi
|
fi
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user