README.SLACKWARE 598 B

1234567891011121314151617181920212223
  1. An init script has been included for the daemon; to run at boot time,
  2. add the following to /etc/rc.d/rc.local:
  3. if [ -x /etc/rc.d/rc.minidlna ]; then
  4. /etc/rc.d/rc.minidlna start
  5. fi
  6. You might also want to have the daemon shut down gracefully
  7. on system halt or reboot; if so, add the following to
  8. /etc/rc.d/rc.local_shutdown:
  9. if [ -x /etc/rc.d/rc.minidlna ]; then
  10. /etc/rc.d/rc.minidlna stop
  11. fi
  12. Remember to give executable permission to /etc/rc.d/rc.local_shutdown:
  13. chmod 0755 /etc/rc.d/rc.local_shutdown
  14. To check the daemon is running properly:
  15. /etc/rc.d/rc.minidlna status