summaryrefslogtreecommitdiffstats
path: root/bin/sync-gentoo-ftp-mirror.sh
blob: d6660f550fca3d8c0a91a3c72b15a29f2f0d9b7a (plain)
1
2
3
4
5
6
7
8
9
#!/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`