[BACK]Return to MirrorOpenBSD CVS log [TXT][DIR] Up to [local] / openbsd / OpenBSDTorrents

Diff for /openbsd/OpenBSDTorrents/MirrorOpenBSD between version 1.4 and 1.13

version 1.4, 2007/10/01 21:17:23 version 1.13, 2012/09/01 17:37:07
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $RedRiver: MirrorOpenBSD,v 1.3 2007/02/07 23:09:05 andrew Exp $  # $RedRiver: MirrorOpenBSD,v 1.11 2011/03/31 02:21:39 andrew Exp $
   
 . /etc/OpenBSDTorrents.conf  . /etc/OpenBSDTorrents.conf
   
Line 10 
Line 10 
         PID=`head -1 ${PIDFILE}`          PID=`head -1 ${PIDFILE}`
         kill -0 ${PID} 2> /dev/null          kill -0 ${PID} 2> /dev/null
         if [ $? -eq 0 ]; then          if [ $? -eq 0 ]; then
                 echo Already running                  echo $0 Already running
                 exit 1                  exit 1
         fi          fi
 fi  fi
 echo $$ > ${PIDFILE}  echo $$ > ${PIDFILE}
   
 SERVER=rsync://openbsd.mirrors.tds.net/OpenBSD  
 #SERVER=rsync://ftp3.usa.openbsd.org/ftp/  #SERVER=rsync://ftp3.usa.openbsd.org/ftp/
   SERVER=rsync://ftp5.usa.openbsd.org/ftp/
   #SERVER=rsync://openbsd.mirrors.tds.net/OpenBSD
   #SERVER=rsync://openbsd.mirror.frontiernet.net/OpenBSD
   #SERVER=rsync://mirror.rit.edu/OpenBSD/
   #SERVER=rsync://filedump.se.rit.edu/OpenBSD/
   #SERVER=rsync://mirror.planetunix.net/OpenBSD/
   #SERVER=rsync://mirror.team-cymru.org/OpenBSD/
   
 rsync -az \          #--dry-run \
         --delete --delete-excluded \  rsync -a \
         --verbose=1 --log-format="%o \`%f'%L %b %l" \          --delete \
           --delete-excluded \
           --verbose=1 --log-format="%t [%p] %o %f %l" \
         -f "exclude .*" \          -f "exclude .*" \
         -f "exclude ls-lR.gz" \          -f "exclude ls-lR.gz" \
         -f "exclude /OpenBGPD/" \          -f "exclude /OpenBGPD/" \
Line 31 
Line 39 
         -f "exclude /src/" \          -f "exclude /src/" \
         -f "exclude /distfiles/" \          -f "exclude /distfiles/" \
         -f "exclude /patches/" \          -f "exclude /patches/" \
           -f "exclude */Changelogs/" \
         -f "exclude /snapshots/packages/" \          -f "exclude /snapshots/packages/" \
         -f "exclude /2\.?/" \          -f "exclude /[234].?/" \
         -f "exclude /3\.?/" \          -f "exclude /5.[023456789]/packages/" \
           -f "exclude /5.2/**.tgz" \
         ${SERVER} ${OBT_DIR_FTP}/${OBT_BASENAME}          ${SERVER} ${OBT_DIR_FTP}/${OBT_BASENAME}
   
           #-f "exclude /5.[0]/" \

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

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