summaryrefslogtreecommitdiffstats
path: root/package/peercast/files/peercast.init
blob: c61c31438d2a458c89502ed30a76f61e88a35fce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

PID_F=/var/run/peercast.pid

case $1 in
 start)
  peercast -d -i /etc/peercast.ini -l /var/log/peercast.log -p $PID_F
  ;;
 stop)
  [ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1
  ;;
 *)
  echo "usage: $0 (start|stop)"
  exit 1
esac

exit $?