#!/bin/bash RSYNC="/usr/bin/rsync" OPTS="--quiet --recursive --links --perms --times --devices --delete --timeout=600 --password-file=/home/syncer/etc/gentoo_distfiles" SRC="gentoo@masterdistfiles.gentoo.org::gentoo" DST="/raid/ftp/pub/gentoo/" ${RSYNC} ${OPTS} ${SRC} ${DST} echo "End: "`date`