mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
49 lines
849 B
Plaintext
49 lines
849 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
# 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" | sed 's/"//')
|
|
pidfile=${pidfile:-/var/run/mpd/$NAME.pid}
|
|
}
|
|
|
|
start() {
|
|
checkconfig || return 1
|
|
get_pidfile
|
|
checkpath --owner ${M_USER:-mpd}:${M_GROUP:-audio} \
|
|
--directory ${pidfile%/*}
|
|
|
|
ebegin "Starting ${NAME}"
|
|
start-stop-daemon --start --quiet \
|
|
--exec ${DAEMON} -- ${MPD_OPTS}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
get_pidfile
|
|
ebegin "Stopping ${NAME}"
|
|
mpd --kill
|
|
eend $?
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath --directory --owner ${M_USER:-mpd} \
|
|
--mode 0775 /var/run/$NAME
|
|
}
|