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

Diff for /openbsd/OpenBSDTorrents/runbt.sh between version 1.8 and 1.12

version 1.8, 2005/03/29 00:12:21 version 1.12, 2005/05/25 02:05:50
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 \
     --super_seeder 1 \      --check_hashes 0 \
     --minport 10000 --maxport 10500 \      --display_interval 600 \
     --saveas /home/ftp/pub/ --saveas_style 2 \      --minport 6881 --maxport 6989 \
     /home/torrentsync/torrents/ > /dev/null      --max_files_open 75 \
       --saveas_style 2 \
       --save_in ${OBT_DIR_FTP} \
       --torrent_dir /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.8  
changed lines
  Added in v.1.12

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