nbd 8e20d35fa7 add ddns-scripts (package by Eric Bishop)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10705 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-04-02 09:24:49 +00:00

18 lines
471 B
Bash

#!/bin/sh
. /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' ]
then
start_daemon_for_all_ddns_sections
fi