mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 15:19:40 +02:00
19 lines
260 B
Plaintext
19 lines
260 B
Plaintext
|
#!/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 $?
|
||
|
|