summaryrefslogtreecommitdiffstats
path: root/audio/mt-daapd/rc.mt-daapd
diff options
context:
space:
mode:
Diffstat (limited to 'audio/mt-daapd/rc.mt-daapd')
-rw-r--r--audio/mt-daapd/rc.mt-daapd35
1 files changed, 35 insertions, 0 deletions
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