START/STOP values must be specified in the init script
[packages.git] / net / siproxd / files / siproxd.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3 START=50
4
5 BIN=siproxd
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 $OPTIONS
14 }
15
16 stop() {
17         [ -f $PID_F ] && kill $(cat $PID_F)
18 }
19