updatedd:

* Update the init script and config file to use multiple updates
 * Cleanup the Makefile

git-svn-id: svn://svn.openwrt.org/openwrt/packages@8072 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
olli 2007-07-20 12:15:36 +00:00
parent 52f0159c79
commit e41e87b51f
6 changed files with 44 additions and 43 deletions

View File

@ -10,12 +10,11 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=updatedd
PKG_VERSION:=2.5
PKG_RELEASE:=3
PKG_RELEASE:=4
PKG_MD5SUM:=2957496de0c8e08e9c6492fabf1a88be
PKG_SOURCE_URL:=http://savannah.nongnu.org/download/updatedd/
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
@ -103,10 +102,9 @@ define Package/updatedd-mod-zoneedit
TITLE:=zoneedit.com
endef
define Build/Compile
$(call Build/Compile/Default,DESTDIR="$(PKG_INSTALL_DIR)" \
all install)
endef
MAKE_FLAGS += \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
define BuildPlugin
define Package/$(1)/install
@ -119,14 +117,14 @@ endef
define Package/updatedd/install
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/ddns.init $(1)/etc/init.d/ddns
$(INSTALL_BIN) ./files/updatedd.init $(1)/etc/init.d/updatedd
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_DATA) ./files/ddns.config $(1)/etc/config/updatedd
$(INSTALL_DATA) ./files/updatedd.config $(1)/etc/config/updatedd
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/updatedd $(1)/usr/bin/
$(INSTALL_DIR) $(1)/usr/lib/updatedd
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
$(INSTALL_BIN) ./files/ddns.hotplug $(1)/etc/hotplug.d/iface/30-ddns
$(INSTALL_BIN) ./files/updatedd.hotplug $(1)/etc/hotplug.d/iface/30-updatedd
endef
$(eval $(call BuildPackage,updatedd))

View File

@ -1,6 +0,0 @@
config updatedd
option ddns_service ''
option ddns_user ''
option ddns_passwd ''
option ddns_host ''
option ddns_update '0'

View File

@ -1,27 +0,0 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=50
. /etc/functions.sh
config_load updatedd
config_get ddns_service cfg1 ddns_service
config_get ddns_user cfg1 ddns_user
config_get ddns_passwd cfg1 ddns_passwd
config_get ddns_host cfg1 ddns_host
config_get ddns_update cfg1 ddns_update
start() {
[ "$ddns_update" = 1 ] && {
/usr/bin/updatedd -Y $ddns_service -- $ddns_user:$ddns_passwd $ddns_host
}
}
stop() {
killall updatedd
}
restart() {
stop
start
}

View File

@ -0,0 +1,6 @@
config updatedd
option service ''
option user ''
option passwd ''
option host ''
option update '0'

View File

@ -9,7 +9,7 @@ COMMAND=/usr/bin/$NAME
config_get ifname wan ifname
[ -n "$ifname" ] && {
/etc/init.d/ddns restart
/etc/init.d/updatedd restart
}
} &
}

View File

@ -0,0 +1,30 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=50
start_service () {
local section="$1"
config_get service "$section" service
config_get user "$section" user
config_get passwd "$section" passwd
config_get host "$section" host
config_get update "$section" update
[ "$update" = 1 ] && {
/usr/bin/updatedd -Y $service -- $user:$passwd $host
}
}
start() {
config_load "updatedd"
config_foreach start_service updatedd
}
stop() {
killall updatedd
}
restart() {
stop
start
}