1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/mpdscribble/mpdscribble.initd
2017-10-19 12:19:07 +02:00

20 lines
475 B
Text

#!/sbin/openrc-run
depend() {
need net
use mpd
}
start () {
ebegin "Starting Music Player Daemon Audioscrobbler client"
start-stop-daemon --start --exec /usr/bin/mpdscribble -- --pidfile /var/run/mpdscribble.pid
eend $?
}
stop () {
ebegin "Stopping Music Player Daemon Audioscrobbler client"
start-stop-daemon --stop --quiet -p /var/run/mpdscribble.pid --exec /usr/bin/mpdscribble || eerror "mpdscribble is not running"
rm -f /var/run/mpdscribble.pid
eend $?
}