-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.修复初始安装后,「策略路由」页面无法打开的问题。 2.修复正则表达式使用中的符号错误。 3.更新运营商 IP 地址数据文件。
- Loading branch information
Showing
19 changed files
with
52 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# install.sh v4.6.2 | ||
# install.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
# LZ RULE script for Asuswrt-Merlin Router | ||
|
@@ -11,7 +11,7 @@ | |
|
||
#BEGIN | ||
|
||
LZ_VERSION=v4.6.2 | ||
LZ_VERSION=v4.6.3 | ||
TIMEOUT=10 | ||
CURRENT_PATH="${0%/*}" | ||
[ "${CURRENT_PATH:0:1}" != '/' ] && CURRENT_PATH="$( pwd )${CURRENT_PATH#*.}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_rule_config.sh v4.6.2 | ||
# lz_rule_config.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
# 本软件采用CIDR(无类别域间路由,Classless Inter-Domain Routing)技术,是一个在Internet上创建附加地 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_clear_custom_scripts_data.sh v4.6.2 | ||
# lz_clear_custom_scripts_data.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
## 清除用户自定义脚本数据 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_define_global_variables.sh v4.6.2 | ||
# lz_define_global_variables.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
# QnkgTFog5aaZ5aaZ5ZGc77yI6Juk6J+G5aKp5YS/77yJ(首次运行标识,切勿修改) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_initialize_config.sh v4.6.2 | ||
# lz_initialize_config.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
## 初始化脚本配置 | ||
|
@@ -1555,7 +1555,7 @@ lz_get_config_data() { | |
## 全局常量及变量 | ||
## 返回值:无 | ||
lz_full_data_backup() { | ||
eval "$( echo "${param_list}" | awk '/^[[:alnum:]_]\+$/ {print "echo lz_config_"$1"=\$\{local_"$1"\}"}' )" > "${PATH_CONFIGS}/lz_rule_config.box" | ||
eval "$( echo "${param_list}" | awk '/^[[:alnum:]_]+$/ {print "echo lz_config_"$1"=\$\{local_"$1"\}"}' )" > "${PATH_CONFIGS}/lz_rule_config.box" | ||
chmod 775 "${PATH_CONFIGS}/lz_rule_config.box" > /dev/null 2>&1 | ||
} | ||
|
||
|
@@ -2114,7 +2114,7 @@ lz_variable_initialize | |
lz_init_cfg_data | ||
|
||
## 获取重新安装标识 | ||
local_reinstall="$( grep -c 'QnkgTFog5aaZ5aaZ5ZGc77yI6Juk6J[\+]G5aKp5YS[\/]77yJ' "${PATH_FUNC}/lz_define_global_variables.sh" )" | ||
local_reinstall="$( grep -wc 'QnkgTFog5aaZ5aaZ5ZGc77yI6Juk6J[+]G5aKp5YS[\/]77yJ' "${PATH_FUNC}/lz_define_global_variables.sh" )" | ||
|
||
## 新安装的脚本,更新主运行脚本和脚本配置文件中初始缺省的路径数据 | ||
if [ "${local_reinstall}" -gt "0" ] && [ "${PATH_LZ}" != "/jffs/scripts/lz" ]; then | ||
|
@@ -2320,7 +2320,7 @@ lz_restore_to_rn "${1}" | |
|
||
if [ "${local_reinstall}" -gt "0" ]; then | ||
## 删除重新安装标识 | ||
sed -i "/QnkgTFog5aaZ5aaZ5ZGc77yI6Juk6J+G5aKp5YS\/77yJ/d" "${PATH_FUNC}/lz_define_global_variables.sh" > /dev/null 2>&1 | ||
sed -i "/QnkgTFog5aaZ5aaZ5ZGc77yI6Juk6J[+]G5aKp5YS[\/]77yJ/d" "${PATH_FUNC}/lz_define_global_variables.sh" > /dev/null 2>&1 | ||
fi | ||
|
||
## 生成并传递软件的配置参数 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_rule_address_query.sh v4.6.2 | ||
# lz_rule_address_query.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
## 网址信息查询脚本 | ||
|
@@ -1182,9 +1182,9 @@ lz_query_address() { | |
ipset -q flush lz_aq_ispip_tmp_sets | ||
## 第一WAN口的DNS解析服务器网址 | ||
eval "$( nvram get "wan0_dns" | awk 'NF >= "1" { | ||
if ($1 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ && $1 !~ /^127[\.]0\+[\.]0\+[\.]0*1$/ && $1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
if ($1 !~ /^0+[\.]0+[\.]0+[\.]0+$/ && $1 !~ /^127[\.]0+[\.]0+[\.]0*1$/ && $1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
print "ipset -q add lz_aq_ispip_tmp_sets "$1; | ||
if ($2 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ && $2 !~ /^127[\.]0\+[\.]0\+[\.]0*1$/ && $2 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
if ($2 !~ /^0+[\.]0+[\.]0+[\.]0+$/ && $2 !~ /^127[\.]0+[\.]0+[\.]0*1$/ && $2 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
print "ipset -q add lz_aq_ispip_tmp_sets "$2; | ||
exit; | ||
}' )" | ||
|
@@ -1205,9 +1205,9 @@ lz_query_address() { | |
ipset -q flush lz_aq_ispip_tmp_sets | ||
## 第二WAN口的DNS解析服务器网址 | ||
eval "$( nvram get "wan1_dns" | awk 'NF >= "1" { | ||
if ($1 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ && $1 !~ /^127[\.]0\+[\.]0\+[\.]0*1$/ && $1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
if ($1 !~ /^0+[\.]0+[\.]0+[\.]0+$/ && $1 !~ /^127[\.]0+[\.]0+[\.]0*1$/ && $1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
print "ipset -q add lz_aq_ispip_tmp_sets "$1; | ||
if ($2 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ && $2 !~ /^127[\.]0\+[\.]0\+[\.]0*1$/ && $2 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
if ($2 !~ /^0+[\.]0+[\.]0+[\.]0+$/ && $2 !~ /^127[\.]0+[\.]0+[\.]0*1$/ && $2 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
print "ipset -q add lz_aq_ispip_tmp_sets "$2; | ||
exit; | ||
}' )" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_rule_func.sh v4.6.2 | ||
# lz_rule_func.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
#BEGIN | ||
|
@@ -124,14 +124,14 @@ lz_print_src_to_dst_port_ipv4_address_list() { | |
## 总有效条目数 | ||
lz_get_ipv4_data_file_item_total() { | ||
local retval="0" | ||
[ -s "${1}" ] && retval="$( lz_print_ipv4_address_list "${1}" | awk 'NF >= "1" { | ||
[ -s "${1}" ] && retval="$( lz_print_ipv4_address_list "${1}" | awk -v count="0" 'NF >= "1" { | ||
if ($1 != "0.0.0.0/0") | ||
count++; | ||
else { | ||
count=1; | ||
exit; | ||
} | ||
} END{print count}' )" | ||
} END{print count;}' )" | ||
echo "${retval}" | ||
} | ||
|
||
|
@@ -3301,16 +3301,16 @@ lz_initialize_ip_data_policy() { | |
## 获取WAN口的DNS解析服务器网址 | ||
local local_ifip_wan0_dns1="" local_ifip_wan0_dns2="" local_ifip_wan1_dns1="" local_ifip_wan1_dns2="" | ||
eval "$( nvram get "wan0_dns" | awk 'NF >= "1" { | ||
if ($1 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ && $1 !~ /^127[\.]0\+[\.]0\+[\.]0*1$/ && $1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
if ($1 !~ /^0+[\.]0+[\.]0+[\.]0+$/ && $1 !~ /^127[\.]0+[\.]0+[\.]0*1$/ && $1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
print "local_ifip_wan0_dns1="$1; | ||
if ($2 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ && $2 !~ /^127[\.]0\+[\.]0\+[\.]0*1$/ && $2 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
if ($2 !~ /^0+[\.]0+[\.]0+[\.]0+$/ && $2 !~ /^127[\.]0+[\.]0+[\.]0*1$/ && $2 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
print "local_ifip_wan0_dns2="$2; | ||
exit; | ||
}' )" | ||
eval "$( nvram get "wan1_dns" | awk 'NF >= "1" { | ||
if ($1 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ && $1 !~ /^127[\.]0\+[\.]0\+[\.]0*1$/ && $1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
if ($1 !~ /^0+[\.]0+[\.]0+[\.]0+$/ && $1 !~ /^127[\.]0+[\.]0+[\.]0*1$/ && $1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
print "local_ifip_wan1_dns1="$1; | ||
if ($2 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ && $2 !~ /^127[\.]0\+[\.]0\+[\.]0*1$/ && $2 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
if ($2 !~ /^0+[\.]0+[\.]0+[\.]0+$/ && $2 !~ /^127[\.]0+[\.]0+[\.]0*1$/ && $2 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}([\/][0-9]{1,2})?$/) | ||
print "local_ifip_wan1_dns2="$2; | ||
exit; | ||
}' )" | ||
|
@@ -3617,16 +3617,16 @@ lz_proxy_route_support() { | |
ip rule add from "${line}" to "0.0.0.0" table "${wan_no}" prio "${IP_RULE_PRIO_TOPEST}" > /dev/null 2>&1 | ||
else | ||
if [ "${dn_pre_resolved}" = "0" ]; then | ||
nslookup "${line}" 2> /dev/null | awk 'NR > 4 && $3 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && $3 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ \ | ||
nslookup "${line}" 2> /dev/null | awk 'NR > 4 && $3 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && $3 !~ /^0+[\.]0+[\.]0+[\.]0+$/ \ | ||
{system("ip rule add from 0.0.0.0 to "$3"'" table ${wan_no} prio ${IP_RULE_PRIO_TOPEST} > /dev/null 2>&1; ip rule add from "'"$3"'" to 0.0.0.0 table ${wan_no} prio ${IP_RULE_PRIO_TOPEST} > /dev/null 2>&1"'")}' | ||
elif [ "${dn_pre_resolved}" = "1" ]; then | ||
[ "${pre_dns_enable}" = "0" ] \ | ||
&& nslookup "${line}" "${pre_dns}" 2> /dev/null | awk 'NR > 4 && $3 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && $3 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ \ | ||
&& nslookup "${line}" "${pre_dns}" 2> /dev/null | awk 'NR > 4 && $3 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && $3 !~ /^0+[\.]0+[\.]0+[\.]0+$/ \ | ||
{system("ip rule add from 0.0.0.0 to "$3"'" table ${wan_no} prio ${IP_RULE_PRIO_TOPEST} > /dev/null 2>&1; ip rule add from "'"$3"'" to 0.0.0.0 table ${wan_no} prio ${IP_RULE_PRIO_TOPEST} > /dev/null 2>&1"'")}' | ||
elif [ "${dn_pre_resolved}" = "2" ]; then | ||
node_list="$( nslookup "${line}" 2> /dev/null | awk 'NR > 4 && $3 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && $3 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ {print $3}' )" | ||
node_list="$( nslookup "${line}" 2> /dev/null | awk 'NR > 4 && $3 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && $3 !~ /^0+[\.]0+[\.]0+[\.]0+$/ {print $3}' )" | ||
[ "${pre_dns_enable}" = "0" ] \ | ||
&& eval "$( nslookup "${line}" "${pre_dns}" 2> /dev/null | awk 'NR > 4 && $3 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && $3 !~ /^0\+[\.]0\+[\.]0\+[\.]0\+$/ \ | ||
&& eval "$( nslookup "${line}" "${pre_dns}" 2> /dev/null | awk 'NR > 4 && $3 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && $3 !~ /^0+[\.]0+[\.]0+[\.]0+$/ \ | ||
{printf "node_list=\"\$\( echo \"\${node_list}\" \| sed -e \"\\\$a %s\" -e \"\/\^[[:space:]]\*\$\/d\" \)\"\n", $3}' )" | ||
echo "${node_list}" | awk '$1 ~ /^([0-9]{1,3}[\.]){3}[0-9]{1,3}$/ && !i[$1]++ \ | ||
{system("ip rule add from 0.0.0.0 to "$1"'" table ${wan_no} prio ${IP_RULE_PRIO_TOPEST} > /dev/null 2>&1; ip rule add from "'"$1"'" to 0.0.0.0 table ${wan_no} prio ${IP_RULE_PRIO_TOPEST} > /dev/null 2>&1"'")}' | ||
|
@@ -5004,7 +5004,7 @@ lz_add_dual_ip_rules() { | |
## 返回值:无 | ||
lz_add_src_to_dst_sets_ip_rules() { | ||
if [ -z "${1}" ] || [ ! -s "${2}" ]; then return; fi; | ||
{ echo "${1}" | grep -qEw '0\+[\.]0\+[\.]0\+[\.]0\+[\/]0\+' || echo "${1}" | grep -qEw '0\+[\.]0\+[\.]0\+[\.]0\+' \ | ||
{ echo "${1}" | grep -qEw '0+[\.]0+[\.]0+[\.]0+[\/]0+' || echo "${1}" | grep -qEw '0+[\.]0+[\.]0+[\.]0+' \ | ||
|| [ "${1}" = "${route_local_ip}" ]; } && return | ||
local box_addr="${1}" | ||
[ "${box_addr}" = "${route_local_subnet}" ] && box_addr="${route_static_subnet}" | ||
|
@@ -5021,7 +5021,7 @@ lz_add_src_to_dst_sets_ip_rules() { | |
## 返回值:无 | ||
lz_add_src_sets_to_dst_ip_rules() { | ||
if [ ! -s "${1}" ] || [ -z "${2}" ]; then return; fi; | ||
{ echo "${2}" | grep -qEw '0\+[\.]0\+[\.]0\+[\.]0\+[\/]0\+' || echo "${2}" | grep -qEw '0\+[\.]0\+[\.]0\+[\.]0\+' \ | ||
{ echo "${2}" | grep -qEw '0+[\.]0+[\.]0+[\.]0+[\/]0+' || echo "${2}" | grep -qEw '0+[\.]0+[\.]0+[\.]0+' \ | ||
|| [ "${2}" = "${route_local_ip}" ]; } && return | ||
local box_addr="${2}" | ||
[ "${box_addr}" = "${route_local_subnet}" ] && box_addr="${route_static_subnet}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_rule_status.sh v4.6.2 | ||
# lz_rule_status.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
## 显示脚本运行状态脚本 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_vpn_daemon.sh v4.6.2 | ||
# lz_vpn_daemon.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
## 虚拟专网客户端路由刷新处理后台守护进程脚本 | ||
|
@@ -10,7 +10,7 @@ | |
#BEGIN | ||
|
||
## 版本号 | ||
LZ_VERSION=v4.6.2 | ||
LZ_VERSION=v4.6.3 | ||
|
||
## 项目接口文件部署路径 | ||
PATH_INTERFACE="${0%/*}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_rule_service.sh v4.6.2 | ||
# lz_rule_service.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
## 服务接口脚本 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
# lz_policy_routing.js v4.6.2 | ||
# lz_policy_routing.js v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
# LZ JavaScript for Asuswrt-Merlin Router | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# lz_rule.sh v4.6.2 | ||
# lz_rule.sh v4.6.3 | ||
# By LZ 妙妙呜 ([email protected]) | ||
|
||
# 本软件采用CIDR(无类别域间路由,Classless Inter-Domain Routing)技术,是一个在Internet上创建附加地 | ||
|
@@ -86,7 +86,7 @@ | |
## -------------全局数据定义及初始化------------------- | ||
|
||
## 版本号 | ||
LZ_VERSION=v4.6.2 | ||
LZ_VERSION=v4.6.3 | ||
|
||
## 运行状态查询命令 | ||
SHOW_STATUS="status" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
# uninstall.sh v4.6.2 | ||
# uninstall.sh v4.6.3 | ||
# By LZ ([email protected]) | ||
|
||
# LZ RULE script for Asuswrt-Merlin Router | ||
|
@@ -8,7 +8,7 @@ | |
|
||
#BEGIN | ||
|
||
LZ_VERSION=v4.6.2 | ||
LZ_VERSION=v4.6.3 | ||
TIMEOUT=10 | ||
CURRENT_PATH="${0%/*}" | ||
[ "${CURRENT_PATH:0:1}" != '/' ] && CURRENT_PATH="$( pwd )${CURRENT_PATH#*.}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters