README 792 B

123456789101112131415161718192021222324
  1. mt-daapd is an iTunes server for POSIX systems. When run, iTunes will
  2. see the music as a shared library to other clients on the LAN, just as
  3. the OS X and Windows clients.
  4. To work properly, the music must be located on the same filesystem
  5. on which the daemon is running. Also, a template has been placed
  6. in /etc/mt-daapd.conf This file should be edited before the daemon
  7. is run.
  8. An init script has been included for the daemon; to run at boot time,
  9. add the following to /etc/rc.d/rc.local:
  10. if [ -x /etc/rc.d/rc.mt-daapd ]; then
  11. /etc/rc.d/rc.mt-daapd start
  12. fi
  13. You might also want to have the daemon shut down gracefully
  14. on system halt or reboot; if so, add the following to
  15. /etc/rc.d/rc.local_shutdown:
  16. if [ -x /etc/rc.d/rc.mt-daapd ]; then
  17. /etc/rc.d/rc.mt-daapd stop
  18. fi