1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 00:46:47 +03:00
openwrt-xburst/package/peercast/files/peercast.init
nico 9fe5932e97 add peercast package (thanks to Romain Beauxis)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2672 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-12-14 22:34:56 +00:00

19 lines
260 B
Bash

#!/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 $?