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/ezstream/files/ezstream.initd

34 lines
633 B

#!/sbin/openrc-run
depend() {
need icecast
}
checkconfig() {
if [ ! -e ${CONFIGFILE} ]; then
eerror "You need to make a config file"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting ezstream"
start-stop-daemon --background --start --pidfile /var/run/ezstream.pid \
--make-pidfile --user icecast --group nogroup \
--exec /usr/bin/ezstream -- ${EZSTREAM_OPTS} -c "${CONFIGFILE}"
eend $?
}
stop() {
ebegin "Stopping ezstream"
start-stop-daemon --stop --pidfile /var/run/ezstream.pid --name ezstream
eend $?
}
reload() {
ebegin "Reloading ezstream"
kill -1 `cat /var/run/ezstream.pid`
eend $?
}