18 lines
471 B
Plaintext
18 lines
471 B
Plaintext
|
#!/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
|
||
|
|
||
|
|