aboutsummaryrefslogtreecommitdiff
path: root/bin/sync
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sync')
-rwxr-xr-xbin/sync3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/sync b/bin/sync
index 5962eef..c683608 100755
--- a/bin/sync
+++ b/bin/sync
@@ -8,6 +8,7 @@ DIRNAME="`dirname $0`"
WORK="$DIRNAME/.."
CWD="`pwd`"
LOCKFILE="$WORK/.sync-lockfile"
+ORIGIN="rsync://cache.sarava.org/cache/data"
# Set lockfile
if [ -e "$LOCKFILE" ]; then
@@ -19,7 +20,7 @@ fi
# Sync
cd $DIRNAME
-rsync -avz rsync://cache.sarava.org/cache/data/ data/
+rsync -avz $ORIGIN/ data/
# Teardown
rm $LOCKFILE