You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/peercast/files/peercast.initd

29 lines
597 B

#!/sbin/runscript
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
pidfile=/var/run/peercast.pid
depend() {
need net
}
start() {
ebegin "Starting peercast daemon"
start-stop-daemon --start --quiet --background \
--make-pidfile --pidfile ${pidfile} \
--chuid nobody:audio \
--exec /usr/sbin/peercast -- \
-i /usr/share/peercast/peercast.ini \
-l /var/log/peercast.log \
-P /usr/share/peercast
eend $?
}
stop() {
ebegin "Stopping peercast daemon"
start-stop-daemon --stop --quiet --pidfile ${pidfile}
eend $?
}