You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
291 B

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