aboutsummaryrefslogtreecommitdiff
path: root/multimedia/mt-daapd/README
diff options
context:
space:
mode:
authorAndrew Brouwers <abrouwers@gmail.com>2010-05-11 15:00:29 +0200
committerRobby Workman <rworkman@slackbuilds.org>2010-05-11 15:00:29 +0200
commitf0e6e7a7f55818e13dfed57c43643e8e5592b7ca (patch)
tree798b3d02c0d310055162a8d9170eaead5dfe263b /multimedia/mt-daapd/README
parent380ee39960e847bc64d36e775eca06c78659d963 (diff)
multimedia/mt-daapd: Initial import
Diffstat (limited to 'multimedia/mt-daapd/README')
-rw-r--r--multimedia/mt-daapd/README22
1 files changed, 22 insertions, 0 deletions
diff --git a/multimedia/mt-daapd/README b/multimedia/mt-daapd/README
new file mode 100644
index 0000000000000..935c8ffef1d8a
--- /dev/null
+++ b/multimedia/mt-daapd/README
@@ -0,0 +1,22 @@
+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
+