From: acinonyx Date: Thu, 4 Jun 2009 14:59:42 +0000 (+0000) Subject: [packages] ntpclient: Allow ntpclient to run without default route installed X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=aed90c6e21fd1c3deac36932d8221546fe6d3f8d;p=packages.git [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 --- diff --git a/net/ntpclient/files/ntpclient.hotplug b/net/ntpclient/files/ntpclient.hotplug index 634529cae..29f17c177 100644 --- a/net/ntpclient/files/ntpclient.hotplug +++ b/net/ntpclient/files/ntpclient.hotplug @@ -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