openwrtv3/openwrt/package/siproxd/files/siproxd.init
Nicolas Thill e7ab00396c Add siproxd package
SVN-Revision: 894
2005-05-14 20:32:03 +00:00

21 lines
283 B
Bash

#!/bin/sh
BIN=siproxd
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 $OPTIONS
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F)
;;
*)
echo "usage: $0 (start|stop)"
exit 1
esac
exit $?