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 | a791f5430fcb4d2e7145ccfb16ee996280ea1a04 (patch) | |
| tree | 95c1417a3a6569a20ec51a76da8d1b36dea5440a | |
| parent | 346b74a2ff03f7e3795e0e27e0dc5836908604aa (diff) | |
| download | upstream-a791f5430fcb4d2e7145ccfb16ee996280ea1a04.tar.gz upstream-a791f5430fcb4d2e7145ccfb16ee996280ea1a04.tar.bz2 upstream-a791f5430fcb4d2e7145ccfb16ee996280ea1a04.zip | |
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
| -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 69d3d35f577..97a413f7742 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) |
