docs:mac:builds:mediatomb

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
docs:mac:builds:mediatomb [2008/08/09 01:11] billhdocs:mac:builds:mediatomb [2008/09/07 00:27] (current) billh
Line 92: Line 92:
 sudo chown -R nobody:nobody /usr/local/mediatomb sudo chown -R nobody:nobody /usr/local/mediatomb
 </code> </code>
-  * create a Mac StartupItem, using the following commands in the StartupItems file<code> +  * create a Mac StartupItem, using the following<code bash
-start: +#!/bin/sh
-  sudo -u nobody /usr/local/bin/mediatomb --daemon --home /usr/local --cfgdir mediatomb --logfile /usr/local/var/mediatomb.log+
  
-stop: +## 
-  sudo killall -15 mediatomb+# Configure MediaTomb Server 
 +##
  
-restart+. /etc/rc.common 
-  sudo killall -1 mediatomb+ 
 +StartService () 
 +
 +    if [ "${MEDIATOMB:=-NO-}" = "-YES-" ]; then 
 + ConsoleMessage "Starting MediaTomb Server" 
 + now=`date +%s` 
 + let "limit = $now + 60" 
 + 
 + /usr/local/mysql/bin/mysqladmin -s -u root --password=rootpass status > /dev/null 
 + while [ $? -ne 0 ] && [ $now -lt $limit ] 
 + do 
 + let "now = `date +%s`" 
 + if [ $now -ge $limit ]; then 
 + ConsoleMessage "MediaTomb could not be started because MySQL was not running after the timeout limit" 
 + exit 1 
 + fi 
 + 
 + /usr/local/mysql/bin/mysqladmin -s -u root --password=rootpass status > /dev/null 
 + done 
 + 
 + sudo -u nobody /usr/local/bin/mediatomb --daemon --home /usr/local --cfgdir mediatomb --logfile /usr/local/var/mediatomb.log 
 + fi 
 + 
 +
 + 
 +StopService () 
 +
 + ConsoleMessage "Stopping MediaTomb Server" 
 + sudo killall -15 mediatomb 
 +
 + 
 +RestartService () 
 +
 +    if [ "${MEDIATOMB:=-NO-}" = "-YES-" ]; then 
 + ConsoleMessage "Restarting MediaTomb Server" 
 + sudo killall -1 mediatomb 
 +    else 
 +        StopService 
 +    fi 
 + 
 +
 + 
 +RunService "$1"
 </code> </code>
  
 ===== Future Development ===== ===== Future Development =====
   * :?: Note: may also build with libjs, libmagic, id3lib, taglib   * :?: Note: may also build with libjs, libmagic, id3lib, taglib
  • docs/mac/builds/mediatomb.1218265875.txt.gz
  • Last modified: 2008/08/09 01:11
  • by billh