#!/bin/sh LANG=C TRACDIR='/usr/local/bloxab/trac'; PORT=11001 echo "Starting tracd daemon with databases from $TRACDIR" while true do nohup tracd --port $PORT --basic-auth trac,$TRACDIR/htpasswd, $TRACDIR >> $TRACDIR/error_log 2>&1 done