[BACK]Return to runbt.sh CVS log [TXT][DIR] Up to [local] / openbsd / OpenBSDTorrents

File: [local] / openbsd / OpenBSDTorrents / runbt.sh (download)

Revision 1.11, Wed May 18 01:22:47 2005 UTC (19 years ago) by andrew
Branch: MAIN
Changes since 1.10: +5 -5 lines

using BitTorrent 4.0.1 which seems to r0x0r

#!/bin/sh
#$Id: runbt.sh,v 1.11 2005/05/18 01:22:47 andrew Exp $

. /etc/OpenBSDTorrents.conf
LOGFILE=/home/torrentseeder/runbt.log

cd ${OBT_DIR_HOME}
PIDFILE=${OBT_DIR_HOME}/run/runbt.pid

if [ -e ${PIDFILE} ]; then
        PID=`head -1 ${PIDFILE}`
        kill -0 ${PID} 2> /dev/null
        if [ $? -eq 0 ]; then
                echo Already running
                exit 1
        fi
fi
echo $$ > ${PIDFILE}


echo -n `date` >> ${LOGFILE}
echo '	Starting . . . ' >> ${LOGFILE}

nice btlaunchmany \
    --check_hashes 0 \
    --display_interval 60 \
    --minport 6881 --maxport 6989 \
    --max_files_open 75 \
    --saveas_style 2 \
    --save_in ${OBT_DIR_FTP} \
    --torrent_dir /home/torrentsync/torrents/ >> ${LOGFILE}

echo -n `date` >> ${LOGFILE}
echo '	Died . . . ' >> ${LOGFILE}