[packages] ddns-scripts: add an option to specify the used interface - default to...
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 17 Jul 2011 17:56:04 +0000 (17:56 +0000)
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 17 Jul 2011 17:56:04 +0000 (17:56 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@27657 3c298f89-4303-0410-b956-a3cf2f4a3e73

net/ddns-scripts/Makefile
net/ddns-scripts/files/etc/config/ddns
net/ddns-scripts/files/etc/hotplug.d/iface/25-ddns
net/ddns-scripts/files/usr/lib/ddns/dynamic_dns_functions.sh

index 108627b..c67508b 100644 (file)
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=ddns-scripts
 PKG_VERSION:=1.0.0
-PKG_RELEASE:=14
+PKG_RELEASE:=15
 
 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
 
index 2545215..db84aae 100644 (file)
@@ -62,6 +62,7 @@
 
 config service "myddns"
        option enabled          "0"
+       option interface        "wan"
 
        option service_name     "dyndns.org"
        option domain           "mypersonaldomain.dyndns.org"
index 4b543eb..4495b5d 100644 (file)
@@ -2,9 +2,8 @@
 
 . /usr/lib/ddns/dynamic_dns_functions.sh
 
-if [ "$INTERFACE" = "wan" ] && [ "$ACTION" = "ifup" ]
-then
-       start_daemon_for_all_ddns_sections
+if [ "$ACTION" = "ifup" ]; then
+       start_daemon_for_all_ddns_sections "$INTERFACE"
 fi
 
 
index 19effef..ba18c8b 100644 (file)
@@ -110,6 +110,8 @@ verbose_echo()
 
 start_daemon_for_all_ddns_sections()
 {
+       local event_interface="$1"
+
        SECTIONS=""
        config_cb() 
        {
@@ -119,6 +121,9 @@ start_daemon_for_all_ddns_sections()
 
        for section in $SECTIONS
        do
+               local iface
+               config_get iface "$section" interface "wan"
+               [ "$iface" = "$event_interface" ] || continue
                /usr/lib/ddns/dynamic_dns_updater.sh $section 0 > /dev/null 2>&1 &
        done
 }