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

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

version 1.9, 2005/04/29 21:16:31 version 1.10, 2005/05/18 01:17:12
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 #$Id$  #$Id$
   
 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.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 \      --max_files_open 75 \
     --saveas /home/ftp/pub/ --saveas_style 2 \      --saveas /home/ftp/pub/ --saveas_style 2 \
     /home/torrentsync/torrents/ >> ${LOGFILE}      /home/torrentsync/torrents/ >> ${LOGFILE}
   
 echo -n `date` >> ${LOGFILE}  echo -n `date` >> ${LOGFILE}
 echo '  Died . . . ' >> ${LOGFILE}  echo '  Died . . . ' >> ${LOGFILE}
   
 /home/OpenBSDTorrents/runbt.sh &  

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

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