| version 1.8, 2010/01/05 19:43:16 | version 1.12, 2011/12/08 02:07:49 | 
|  |  | 
| #!/bin/sh | #!/bin/sh | 
| # $RedRiver: MirrorOpenBSD,v 1.7 2009/10/21 18:04:59 andrew Exp $ | # $RedRiver: MirrorOpenBSD,v 1.11 2011/03/31 02:21:39 andrew Exp $ | 
|  |  | 
| . /etc/OpenBSDTorrents.conf | . /etc/OpenBSDTorrents.conf | 
|  |  | 
|  |  | 
| 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://ftp3.usa.openbsd.org/ftp/ | #SERVER=rsync://ftp3.usa.openbsd.org/ftp/ | 
| #SERVER=rsync://ftp5.usa.openbsd.org/ftp/ | SERVER=rsync://ftp5.usa.openbsd.org/ftp/ | 
| #SERVER=rsync://openbsd.mirrors.tds.net/OpenBSD | #SERVER=rsync://openbsd.mirrors.tds.net/OpenBSD | 
| #SERVER=rsync://openbsd.mirror.frontiernet.net/OpenBSD | #SERVER=rsync://openbsd.mirror.frontiernet.net/OpenBSD | 
| #SERVER=rsync://mirror.rit.edu/OpenBSD/ | #SERVER=rsync://mirror.rit.edu/OpenBSD/ | 
| SERVER=rsync://mirror.planetunix.net/OpenBSD/ | #SERVER=rsync://filedump.se.rit.edu/OpenBSD/ | 
|  | #SERVER=rsync://mirror.planetunix.net/OpenBSD/ | 
|  | #SERVER=rsync://mirror.team-cymru.org/OpenBSD/ | 
|  |  | 
| #       --dry-run \ | #       --dry-run \ | 
| rsync -a \ | rsync -a \ | 
| --delete --delete-excluded \ | --delete \ | 
|  | --delete-excluded \ | 
| --verbose=1 --log-format="%t [%p] %o %f %l" \ | --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 /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 /[23].?/" \ | -f "exclude /[23].?/" \ | 
| -f "exclude /4.[01234]/" \ | -f "exclude /4.[012345678]/" \ | 
| -f "exclude /4.[5789]/packages/" \ | -f "exclude /4.[9]/packages/" \ | 
|  | -f "exclude /5.[1]/packages/" \ | 
| ${SERVER} ${OBT_DIR_FTP}/${OBT_BASENAME} | ${SERVER} ${OBT_DIR_FTP}/${OBT_BASENAME} | 
|  |  |