#!/bin/bash RSYNC="/usr/bin/rsync" OPTS="--quiet --recursive --links --perms --times --devices --delete --timeout=600" SRC="rsync://packages.fuduntu.org/repo" DST="/mirror/ftp/pub/fuduntu/" ${RSYNC} ${OPTS} ${SRC} ${DST} echo "End: "`date`