summaryrefslogtreecommitdiffstats
path: root/multimedia/peercast/files/peercast.init
blob: 033beb04c433ca151831f4169425bbd3b5f638ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=50

PID_F=/var/run/peercast.pid

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
}