summaryrefslogtreecommitdiffstats
path: root/bin/sync-gentoo-portage.sh
blob: e9ca82ba3b147b67d7663fa007e7887b4f1e8e6c (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

RSYNC="/usr/bin/rsync"
OPTS="--quiet --recursive --links --perms --times --devices --compress --delete --timeout=600"
SRC="rsync://masterportage.gentoo.org/gentoo-portage"
DST="/raid/gentoo-portage/"

${RSYNC} ${OPTS} ${SRC} ${DST}
echo "End: "`date`