summaryrefslogtreecommitdiffstats
path: root/bin/sync-crux.sh
blob: 30c52a8452e6981228574265135c46bbb4ad8b7c (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://rsync.crux.nu/crux/"
DST="/mirror/ftp/pub/crux/"

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