From 9f10e0c3785ea0e1468e4c971f0428a5c72e56a8 Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Tue, 11 May 2010 20:30:53 +0200 Subject: audio/mt-daapd: Moved from multimedia --- audio/mt-daapd/rc.mt-daapd | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 audio/mt-daapd/rc.mt-daapd (limited to 'audio/mt-daapd/rc.mt-daapd') diff --git a/audio/mt-daapd/rc.mt-daapd b/audio/mt-daapd/rc.mt-daapd new file mode 100644 index 0000000000..c2d88322b7 --- /dev/null +++ b/audio/mt-daapd/rc.mt-daapd @@ -0,0 +1,35 @@ +#!/bin/sh +# +# mt-daapd iTunes music server daemon. +# + +start() { + if [ -x /usr/sbin/mt-daapd ]; then + echo "Starting mt-daapd iTunes server: /usr/sbin/mt-daapd" + /usr/sbin/mt-daapd -c /etc/mt-daapd.conf 2> /dev/null + sleep 1 + fi +} + +stop() { + echo "Killing mt-daapd iTunes server... " + killall /usr/sbin/mt-daapd 2> /dev/null +} + +# How to call it. +case "$1" in + start) + start + ;; + stop) + stop + ;; + restart) + stop + sleep 1 + start + ;; + *) + echo $"Usage: $0 {start|stop|restart}" + ;; +esac -- cgit v1.2.3