SlackBuildsOrg/multimedia/mt-daapd
2010-05-11 19:45:41 +02:00
..
doinst.sh multimedia/mt-daapd: Initial import 2010-05-11 15:00:29 +02:00
mt-daapd.info multimedia/mt-daapd: Updated for version 0.2.4 2010-05-11 19:45:41 +02:00
mt-daapd.SlackBuild multimedia/mt-daapd: Updated for version 0.2.4 2010-05-11 19:45:41 +02:00
rc.mt-daapd multimedia/mt-daapd: Initial import 2010-05-11 15:00:29 +02:00
README multimedia/mt-daapd: Updated for version 0.2.4 2010-05-11 19:45:41 +02:00
slack-desc multimedia/mt-daapd: Updated for version 0.2.4 2010-05-11 19:45:41 +02:00

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