This allows the use of ntp server inside a LAN where there isn't any internet access
git-svn-id: svn://svn.openwrt.org/openwrt/packages@16337
3c298f89-4303-0410-b956-
a3cf2f4a3e73
config_load ntpclient
config_foreach load_settings ntpclient
-DEF_ROUTE=`route -n | grep '^0.0.0.0'`
NTP_RUNNING=`ps | grep $NTPC | grep -v grep`
case "${ACTION:-ifup}" in
ifup)
- [ -n "$DEF_ROUTE" -a -z "$NTP_RUNNING" ] && start_ntpclient
+ [ -z "$NTP_RUNNING" ] && start_ntpclient
;;
ifdown)
[ -n "$NTP_RUNNING" ] && stop_ntpclient