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

Annotation of openbsd/OpenBSDTorrents/MirrorOpenBSD, Revision 1.3

1.1       andrew      1: #!/bin/sh
1.3     ! andrew      2: # $RedRiver: MirrorOpenBSD,v 1.2 2006/11/06 23:22:22 andrew Exp $
1.1       andrew      3:
                      4: . /etc/OpenBSDTorrents.conf
                      5:
                      6: cd ${OBT_DIR_HOME}
                      7: PIDFILE=${OBT_DIR_HOME}/run/mirror.pid
                      8:
                      9: if [ -e ${PIDFILE} ]; then
                     10:        PID=`head -1 ${PIDFILE}`
                     11:        kill -0 ${PID} 2> /dev/null
                     12:        if [ $? -eq 0 ]; then
                     13:                echo Already running
                     14:                exit 1
                     15:        fi
                     16: fi
                     17: echo $$ > ${PIDFILE}
                     18:
1.2       andrew     19: SERVER=rsync://openbsd.mirrors.tds.net/OpenBSD
                     20: #SERVER=rsync://ftp3.usa.openbsd.org/ftp/
1.1       andrew     21:
1.2       andrew     22: rsync -az --delete --delete-excluded \
                     23:        --verbose=1 --log-format="%o \`%f'%L %b %l" \
1.3     ! andrew     24:        -f "exclude .*" \
1.2       andrew     25:        -f "exclude ls-lR.gz" \
                     26:        -f "exclude /OpenBGPD/" \
                     27:        -f "exclude /OpenNTPD/" \
                     28:        -f "exclude /OpenSSH/" \
                     29:        -f "exclude /cvs/" \
                     30:        -f "exclude /src/" \
                     31:        -f "exclude /distfiles/" \
                     32:        -f "exclude /patches/" \
                     33:        -f "exclude /snapshots/packages/" \
                     34:        -f "exclude /2\.?/" \
                     35:        -f "exclude /3\.[0-8]/" \
                     36:        ${SERVER} ${OBT_DIR_FTP}/${OBT_BASENAME}
1.1       andrew     37:

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