summaryrefslogtreecommitdiffstats
path: root/bin/sync-fuduntu.sh
blob: 39e4ee9e9c6930eb364b9cfe64ac6ded6eccec34 (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"
SRC="rsync://packages.fuduntu.org/repo"
DST="/mirror/ftp/pub/fuduntu/"

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