ddns-scripts: remove wrong comment and proto specific behavior
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 27 Aug 2008 21:52:44 +0000 (21:52 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 27 Aug 2008 21:52:44 +0000 (21:52 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@12415 3c298f89-4303-0410-b956-a3cf2f4a3e73

net/ddns-scripts/files/etc/hotplug.d/iface/25-ddns
net/ddns-scripts/files/etc/ppp/ip-up.d/25-ddns [deleted file]

index a548f0d..4b543eb 100644 (file)
@@ -2,14 +2,7 @@
 
 . /usr/lib/ddns/dynamic_dns_functions.sh
 
-config_load "network"
-config_get wan_proto "wan" "proto"
-
-#only start if we're bringing up wan and ppp isn't being used
-#if ppp, it's better to use the /etc/ppp/ip-up.d because ip
-#changes will trigger this directory to be run while only
-#an interface going up or down will trigger this
-if [ "$INTERFACE" = "wan" ] && [ "$ACTION" = "ifup" ] && [ "$wan_proto" != 'pppoe' ]
+if [ "$INTERFACE" = "wan" ] && [ "$ACTION" = "ifup" ]
 then
        start_daemon_for_all_ddns_sections
 fi
diff --git a/net/ddns-scripts/files/etc/ppp/ip-up.d/25-ddns b/net/ddns-scripts/files/etc/ppp/ip-up.d/25-ddns
deleted file mode 100644 (file)
index 46ab72a..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-. /usr/lib/ddns/dynamic_dns_functions.sh
-
-start_daemon_for_all_ddns_sections
-