diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-07-01 15:37:45 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-07-01 15:37:45 +0000 |
commit | 64449714fbf99a988cb17c5cb4a0c4a34eb2481c (patch) | |
tree | 95c1417a3a6569a20ec51a76da8d1b36dea5440a /openwrt/package | |
parent | fa1ae9051784f392d8395653bb700d813363d702 (diff) | |
download | mtk-20170518-64449714fbf99a988cb17c5cb4a0c4a34eb2481c.zip mtk-20170518-64449714fbf99a988cb17c5cb4a0c4a34eb2481c.tar.gz mtk-20170518-64449714fbf99a988cb17c5cb4a0c4a34eb2481c.tar.bz2 |
Fix to use the new option introduced in v0.8.1 to disable sanity time check
SVN-Revision: 1309
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 69d3d35..97a413f 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) |