diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-01 15:37:45 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-01 15:37:45 +0000 |
commit | 33c5b24bff3264447f8a0efd48df48ceec8685fb (patch) | |
tree | 95c1417a3a6569a20ec51a76da8d1b36dea5440a /openwrt/package | |
parent | 3a1fdbb8efdfedcbf9ebc916a33eb1a7c3b3d4c4 (diff) |
Fix to use the new option introduced in v0.8.1 to disable sanity time check
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1309 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package')
-rw-r--r-- | openwrt/package/htpdate/files/htpdate.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/htpdate/files/htpdate.init b/openwrt/package/htpdate/files/htpdate.init index 69d3d35f57..97a413f774 100644 --- a/openwrt/package/htpdate/files/htpdate.init +++ b/openwrt/package/htpdate/files/htpdate.init @@ -9,7 +9,7 @@ PID_F=$RUN_D/$BIN.pid case $1 in start) mkdir -p $RUN_D - $BIN -C 0 -l -s $OPTIONS && $BIN -D $OPTIONS + $BIN -l -s -t $OPTIONS && $BIN -D $OPTIONS ;; stop) [ -f $PID_F ] && kill $(cat $PID_F) |