summaryrefslogtreecommitdiffstats
path: root/audio/mt-daapd/README
diff options
context:
space:
mode:
author Heinz Wiesinger2010-05-11 20:30:53 +0200
committer Heinz Wiesinger2010-05-11 20:30:53 +0200
commit9f10e0c3785ea0e1468e4c971f0428a5c72e56a8 (patch)
tree7add631e68cb71c1c6121f9c423e778d2594aa13 /audio/mt-daapd/README
parent5d0a20d58b80ecd8d783990bfc1ebd25596725e3 (diff)
downloadslackbuilds-9f10e0c3785ea0e1468e4c971f0428a5c72e56a8.tar.gz
audio/mt-daapd: Moved from multimedia
Diffstat (limited to 'audio/mt-daapd/README')
-rw-r--r--audio/mt-daapd/README21
1 files changed, 21 insertions, 0 deletions
diff --git a/audio/mt-daapd/README b/audio/mt-daapd/README
new file mode 100644
index 0000000000..b5b51339f7
--- /dev/null
+++ b/audio/mt-daapd/README
@@ -0,0 +1,21 @@
+mt-daapd is an iTunes server for POSIX systems. When run, iTunes will see the
+music as a shared library to other clients on the LAN, just as the OS X and
+Windows clients.
+
+To work properly, the music must be located on the same filesystem on which
+the daemon is running. Also, a template has been placed in /etc/mt-daapd.conf
+This file should be edited before the daemon is run.
+
+An init script has been included for the daemon; to run at boot time, add the
+following to /etc/rc.d/rc.local:
+
+ if [ -x /etc/rc.d/rc.mt-daapd ]; then
+ /etc/rc.d/rc.mt-daapd start
+ fi
+
+You might also want to have the daemon shut down gracefully on system halt or
+reboot; if so, add the following to /etc/rc.d/rc.local_shutdown:
+
+ if [ -x /etc/rc.d/rc.mt-daapd ]; then
+ /etc/rc.d/rc.mt-daapd stop
+ fi