summaryrefslogtreecommitdiff
path: root/openwrt/package/mt-daapd/files/mt-daapd.init
blob: 2968769c782ba9bcc392bf7a61f03da271800f29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

BIN=mt-daapd
DEFAULT=/etc/default/$BIN
RUN_D=/var/run
PID_F=$RUN_D/$BIN.pid
[ -f $DEFAULT ] && . $DEFAULT

case $1 in
 start)
  [ -d $RUN_D ] || mkdir -p $RUN_D
  $BIN $OPTIONS
  ;;
 stop)
  [ -f $PID_F ] && kill -INT $(cat $PID_F)
  ;;
 *)
  echo "usage: $0 (start|stop)"
  exit 1
esac

exit $?