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

Diff for /openbsd/OpenBSDTorrents/runbt.sh between version 1.4 and 1.10

version 1.4, 2005/03/25 02:30:43 version 1.10, 2005/05/18 01:17:12
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 #$Id$  #$Id$
   
 btlaunchmany.py \  . /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.py \
     --super_seeder 1 \      --super_seeder 1 \
     --minport 10000 --maxport 10500 \      --check_hashes 0 \
       --display_interval 60 \
       --minport 6881 --maxport 6989 \
       --max_files_open 75 \
     --saveas /home/ftp/pub/ --saveas_style 2 \      --saveas /home/ftp/pub/ --saveas_style 2 \
     /home/andrew/torrents/      /home/torrentsync/torrents/ >> ${LOGFILE}
   
 /home/andrew/OpenBSDTorrents/runbt.sh &  echo -n `date` >> ${LOGFILE}
   echo '  Died . . . ' >> ${LOGFILE}

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.10

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>