openwrtv3/openwrt/package/p910nd/files/p910nd.init
Nicolas Thill ff7251cf95 add p910nd (thanks to Oliver Ertl)
SVN-Revision: 1993
2005-09-26 02:09:28 +00:00

20 lines
285 B
Bash

#!/bin/sh
DEFAULT=/etc/default/p910nd
[ -f $DEFAULT ] && . $DEFAULT
RUN_D=/var/run
PID_F=$RUN_D/p910${PORT-0}d.pid
case $1 in
start)
mkdir -p $RUN_D
p910nd $OPTIONS
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F)
;;
*)
echo "usage: $0 (start|stop)"
exit 1
esac
exit $?