#!/sbin/runscript # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { need mpd use net bluetooth } start() { ebegin "Starting remuco server for Music Player Daemon" start-stop-daemon --start --quiet --background --exec /usr/bin/remuco-mpd --pidfile /var/run/remuco-mpd.pid --make-pidfile -- 2>/dev/null eend $? } stop() { ebegin "Stopping remuco server for Music Player Daemon" start-stop-daemon --stop --exec /usr/bin/remuco-mpd --pidfile /var/run/remuco-mpd.pid eend $? }