summaryrefslogtreecommitdiffstats
path: root/package/p910nd/files/p910nd.init
blob: 688090d91942774f6cf47e73f0d660b5044696d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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 $?