version 1.9, 2005/04/29 21:16:31 |
version 1.14, 2006/05/15 19:47:04 |
|
|
#!/bin/sh |
#!/bin/sh |
#$Id$ |
#$RedRiver: runbt.sh,v 1.13 2005/06/01 18:20:26 andrew Exp $ |
|
|
LOGFILE=runbt.log |
. /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 -n `date` >> ${LOGFILE} |
echo ' Starting . . . ' >> ${LOGFILE} |
echo ' Starting . . . ' >> ${LOGFILE} |
|
|
btlaunchmany.py \ |
nice btlaunchmany \ |
--super_seeder 1 \ |
--check_hashes 0 \ |
--minport 10000 --maxport 10500 \ |
--display_interval 600 \ |
|
--minport 6881 --maxport 6989 \ |
--max_files_open 75 \ |
--max_files_open 75 \ |
--saveas /home/ftp/pub/ --saveas_style 2 \ |
--saveas_style 2 \ |
/home/torrentsync/torrents/ >> ${LOGFILE} |
--save_in ${OBT_DIR_FTP} \ |
|
--torrent_dir ${OBT_DIR_CUR_TORRENT} >> ${LOGFILE} |
|
|
echo -n `date` >> ${LOGFILE} |
echo -n `date` >> ${LOGFILE} |
echo ' Died . . . ' >> ${LOGFILE} |
echo ' Died . . . ' >> ${LOGFILE} |
|
|
/home/OpenBSDTorrents/runbt.sh & |
|