summaryrefslogtreecommitdiffstats
path: root/bin/sync-siduction.sh
blob: 9297ceb1063b67a950b31cf274bee4492cda6861 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

RSYNC="/usr/bin/rsync"
#-a = -prtlgoD
OPTS="-prtlvH --delete-after --delay-updates --safe-links"
SRC="rsync://sync.siduction.org:/siduction"
DST="/mirror/ftp/pub/siduction/"

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