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

RSYNC="/usr/bin/rsync"
OPTS="-4 --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`