Merge pull request #397 from chris5560/master
ddns-scripts: fix problem during startup
This commit is contained in:
commit
f34106bd37
3 changed files with 2 additions and 3 deletions
|
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=ddns-scripts
|
||||
PKG_VERSION:=2.0.1
|
||||
PKG_RELEASE:=7
|
||||
PKG_RELEASE:=8
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
|
|
|
@ -247,7 +247,7 @@ get_service_data() {
|
|||
IFS=$__OLD_IFS
|
||||
|
||||
# check is URL or SCRIPT is given
|
||||
__URL=$(echo "$__URL" | grep "^http:")
|
||||
__URL=$(echo "$__DATA" | grep "^http:")
|
||||
[ -z "$__URL" ] && __SCRIPT="/usr/lib/ddns/$__DATA"
|
||||
|
||||
eval "$1='$__URL'"
|
||||
|
|
|
@ -117,7 +117,6 @@ load_all_config_options "ddns" "$SECTION_ID"
|
|||
|
||||
verbose_echo "\n ************** =: ************** ************** **************"
|
||||
verbose_echo " STARTED =: PID '$$' at $(eval $DATE_PROG)"
|
||||
syslog_info "Started"
|
||||
case $VERBOSE_MODE in
|
||||
0) verbose_echo " verbose mode =: '0' - run normal, NO console output";;
|
||||
1) verbose_echo " verbose mode =: '1' - run normal, console mode";;
|
||||
|
|
Loading…
Reference in a new issue