[packages] ntpclient: Allow ntpclient to run without default route installed

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
This commit is contained in:
acinonyx 2009-06-04 14:59:42 +00:00
parent 2078a07032
commit aed90c6e21

View File

@ -52,12 +52,11 @@ load_settings() {
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