adblock: 0.70.2
* fix wan update detection failure Signed-off-by: Dirk Brenken <openwrt@brenken.org>
This commit is contained in:
parent
d27b8c82a9
commit
c353ed253c
3 changed files with 9 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=adblock
|
||||
PKG_VERSION:=0.70.1
|
||||
PKG_VERSION:=0.70.2
|
||||
PKG_RELEASE:=1
|
||||
PKG_LICENSE:=GPL-3.0+
|
||||
PKG_MAINTAINER:=Dirk Brenken <openwrt@brenken.org>
|
||||
|
|
|
@ -472,8 +472,13 @@ f_envcheck()
|
|||
f_restore
|
||||
fi
|
||||
fi
|
||||
check="$(cat /sys/class/net/${adb_wandev}/operstate 2>/dev/null)"
|
||||
if [ "${check}" = "up" ]
|
||||
if [ -n "${adb_wandev4}" ]
|
||||
then
|
||||
rc="$(/bin/ping -c1 -W1 8.8.8.8 -I ${adb_wandev} >/dev/null 2>&1; printf $?)"
|
||||
else
|
||||
rc="$(/bin/ping -6 -c1 -W1 2001:4860:4860::8888 -I ${adb_wandev} >/dev/null 2>&1; printf $?)"
|
||||
fi
|
||||
if [ $((rc)) -eq 0 ]
|
||||
then
|
||||
f_log "get active wan update interface/device (${adb_wanif}/${adb_wandev})"
|
||||
break 2
|
||||
|
|
|
@ -45,7 +45,7 @@ fi
|
|||
# get current directory, script- and openwrt version
|
||||
#
|
||||
adb_scriptdir="${0%/*}"
|
||||
adb_scriptver="0.70.1"
|
||||
adb_scriptver="0.70.2"
|
||||
openwrt_version="$(cat /etc/openwrt_version 2>/dev/null)"
|
||||
|
||||
# source in adblock function library
|
||||
|
|
Loading…
Reference in a new issue