aports/main/mpd/mpd.initd
Mika Havela 3a3fa35fad main/mpd: mpd can't be stopped by using 'start-stop-daemon --stop'.
Using 'mpd --kill' is working better.
2011-08-15 15:54:44 +00:00

43 lines
681 B
Plaintext

#!/sbin/runscript
# init.d file for music player daemon
NAME=mpd
DAEMON=/usr/bin/$NAME
CONF=/etc/mpd.conf
depend() {
need localmount
use net netmount nfsmount esound pulseaudio
after firewall
}
checkconfig() {
[ -f "$CONF" ] && return 0
eerror "configuration file $CONF is missing"
return 1
}
get_pidfile() {
pidfile=$(awk '$1 == "pid_file" { print $2 }' "$CONF")
pidfile=${pidfile:-/var/run/mpd/$NAME.pid}
}
start() {
checkconfig || return 1
get_pidfile
ebegin "Starting ${NAME}"
start-stop-daemon --start --quiet \
--pidfile $pidfile\
--exec ${DAEMON} -- ${MPD_OPTS}
eend $?
}
stop() {
get_pidfile
ebegin "Stopping ${NAME}"
mpd --kill
eend $?
}