musicpd: Add init script
authorMatthias Goebl <oe@m.goebl.net>
Tue, 7 Feb 2006 02:17:42 +0000 (02:17 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 7 Feb 2006 02:17:42 +0000 (02:17 +0000)
- Add init script for mpd
  It's used only in mpd-alsa so far

packages/musicpd/mpd/mpd.init [new file with mode: 0644]

diff --git a/packages/musicpd/mpd/mpd.init b/packages/musicpd/mpd/mpd.init
new file mode 100644 (file)
index 0000000..98a75d0
--- /dev/null
@@ -0,0 +1,32 @@
+#! /bin/sh
+#
+# > update-rc.d mpd defaults 20
+#
+
+test -f /usr/bin/mpd || exit 0
+test -f /etc/mpd.conf || exit 0
+
+case "$1" in
+  start)
+    echo -n "Starting music player daemon: mpd"
+    start-stop-daemon --start --quiet --exec /usr/bin/mpd
+    echo "."
+    ;;
+  stop)
+    echo -n "Stopping music player daemon: mpd"
+    start-stop-daemon --stop --quiet --exec /usr/bin/mpd
+    echo "."
+    ;;
+  restart|force-reload)
+    echo -n "Restarting music player daemon: mpd"
+    start-stop-daemon --start --quiet --exec /usr/bin/mpd
+    sleep 2
+    start-stop-daemon --stop --quiet --exec /usr/bin/mpd
+    echo "."
+    ;;
+  *)
+    echo "Usage: /etc/init.d/mpd {start|stop|restart|force-reload}"
+    exit 1
+esac
+
+exit 0