Fix count/clock setting arguments (#1527)
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 13 Apr 2007 10:54:34 +0000 (10:54 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 13 Apr 2007 10:54:34 +0000 (10:54 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@6944 3c298f89-4303-0410-b956-a3cf2f4a3e73

net/ntpclient/files/ntpclient.init

index e02a42d..5be3b36 100644 (file)
@@ -12,11 +12,10 @@ config_cb() {
                ntp_client)
                        config_get hostname     $cfg hostname
                        config_get port         $cfg port
-                       config_get count        $cfg count
                        
                        ps x | grep 'bin/[n]tpclient' >&- || {
                                route -n 2>&- | grep '^0.0.0.0' >&- && {
-                                       /usr/sbin/ntpclient -c ${count:-1} -h $hostname -p ${port:-123} 2>&- >&-
+                                       /usr/sbin/ntpclient -s -h $hostname -p ${port:-123} 2>&- >&-
                                }
                        }
                ;;