1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-13 01:48:02 +03:00
openwrt-xburst/package/htpdate/files/htpdate.init
nbd 81f5002464 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/openwrt@1309 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-07-01 15:37:45 +00:00

23 lines
313 B
Bash

#!/bin/sh
BIN=htpdate
DEFAULT=/etc/default/$BIN
RUN_D=/var/run
PID_F=$RUN_D/$BIN.pid
[ -f $DEFAULT ] && . $DEFAULT
case $1 in
start)
mkdir -p $RUN_D
$BIN -l -s -t $OPTIONS && $BIN -D $OPTIONS
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F)
;;
*)
echo "usage: $0 (start|stop)"
exit 1
esac
exit $?