add packages_10.03.2 in preparation for the 10.03.2 interim release
[10.03/packages.git] / net / htpdate / files / htpdate.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 START=49
5 BIN=htpdate
6 DEFAULT=/etc/default/$BIN
7 RUN_D=/var/run
8 PID_F=$RUN_D/$BIN.pid
9
10 start() {
11         [ -f $DEFAULT ] && . $DEFAULT
12         mkdir -p $RUN_D
13         $BIN -l -s -t $OPTIONS && $BIN -D $OPTIONS
14 }
15
16 stop() {
17         [ -f $PID_F ] && kill $(cat $PID_F)
18 }
19