summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/sync-fuduntu.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/sync-fuduntu.sh b/bin/sync-fuduntu.sh
new file mode 100755
index 0000000..39e4ee9
--- /dev/null
+++ b/bin/sync-fuduntu.sh
@@ -0,0 +1,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`