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
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
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))
+++ /dev/null
-config updatedd
- option ddns_service ''
- option ddns_user ''
- option ddns_passwd ''
- option ddns_host ''
- option ddns_update '0'
+++ /dev/null
-NAME=updatedd
-CONFIG=/etc/config/$NAME
-COMMAND=/usr/bin/$NAME
-
-[ "$ACTION" = "ifup" -a "$INTERFACE" = "wan" ] && {
- [ -x $COMMAND ] && [ -r $CONFIG ] && {
- include /lib/network
- scan_interfaces
-
- config_get ifname wan ifname
- [ -n "$ifname" ] && {
- /etc/init.d/ddns restart
- }
- } &
-}
+++ /dev/null
-#!/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
-}
--- /dev/null
+config updatedd
+ option service ''
+ option user ''
+ option passwd ''
+ option host ''
+ option update '0'
--- /dev/null
+NAME=updatedd
+CONFIG=/etc/config/$NAME
+COMMAND=/usr/bin/$NAME
+
+[ "$ACTION" = "ifup" -a "$INTERFACE" = "wan" ] && {
+ [ -x $COMMAND ] && [ -r $CONFIG ] && {
+ include /lib/network
+ scan_interfaces
+
+ config_get ifname wan ifname
+ [ -n "$ifname" ] && {
+ /etc/init.d/updatedd restart
+ }
+ } &
+}
--- /dev/null
+#!/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
+}