ddns-scripts: remove wrong comment and proto specific behavior
authorFelix Fietkau <nbd@openwrt.org>
Wed, 27 Aug 2008 21:52:44 +0000 (21:52 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 27 Aug 2008 21:52:44 +0000 (21:52 +0000)
SVN-Revision: 12415

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

index a548f0d943a207c895899930907dd4bf633323fe..4b543eb917507c7274498747d2a82d8935020a44 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
-