Merge pull request #5443 from chris5560/master
ddns-scripts: fix incompatibility with luci-app-ddns <= V.2.4.8-2
This commit is contained in:
commit
fc3d842fe6
2 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ PKG_NAME:=ddns-scripts
|
||||||
PKG_VERSION:=2.7.7
|
PKG_VERSION:=2.7.7
|
||||||
# Release == build
|
# Release == build
|
||||||
# increase on changes of services files or tld_names.dat
|
# increase on changes of services files or tld_names.dat
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
PKG_MAINTAINER:=Christian Schoenebeck <christian.schoenebeck@gmail.com>
|
PKG_MAINTAINER:=Christian Schoenebeck <christian.schoenebeck@gmail.com>
|
||||||
|
|
|
@ -1144,14 +1144,14 @@ get_registered_ip() {
|
||||||
fi
|
fi
|
||||||
[ -n "$__DATA" ] && {
|
[ -n "$__DATA" ] && {
|
||||||
write_log 7 "Registered IP '$__DATA' detected"
|
write_log 7 "Registered IP '$__DATA' detected"
|
||||||
echo "$__DATA" > $IPFILE
|
[ -z "$IPFILE" ] || echo "$__DATA" > $IPFILE
|
||||||
eval "$1=\"$__DATA\"" # valid data found
|
eval "$1=\"$__DATA\"" # valid data found
|
||||||
return 0 # leave here
|
return 0 # leave here
|
||||||
}
|
}
|
||||||
write_log 4 "NO valid IP found"
|
write_log 4 "NO valid IP found"
|
||||||
__ERR=127
|
__ERR=127
|
||||||
fi
|
fi
|
||||||
echo "" > $IPFILE
|
[ -z "$IPFILE" ] || echo "" > $IPFILE
|
||||||
|
|
||||||
[ -n "$LUCI_HELPER" ] && return $__ERR # no retry if called by LuCI helper script
|
[ -n "$LUCI_HELPER" ] && return $__ERR # no retry if called by LuCI helper script
|
||||||
[ -n "$2" ] && return $__ERR # $2 is given -> no retry
|
[ -n "$2" ] && return $__ERR # $2 is given -> no retry
|
||||||
|
|
Loading…
Reference in a new issue