summaryrefslogtreecommitdiffstats
path: root/trunk/tools/sync-trees.sh
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2012-05-26 15:28:33 +0000
committerThomas Backlund <tmb@mageia.org>2012-05-26 15:28:33 +0000
commit528a1fbedeffce036154955623c370b8f47c33bd (patch)
tree0865a6d7c1939082917acf5de3b4f85ba77bd09d /trunk/tools/sync-trees.sh
parent07cb265cf99918196a257585757a3c2bb175f57f (diff)
parent7eead25cd00a547753ec94f6b301c5b32968291b (diff)
downloaddraklive-config-distro/mga2.tar
draklive-config-distro/mga2.tar.gz
draklive-config-distro/mga2.tar.bz2
draklive-config-distro/mga2.tar.xz
draklive-config-distro/mga2.zip
new branch for mga2distro/mga2
Diffstat (limited to 'trunk/tools/sync-trees.sh')
-rwxr-xr-xtrunk/tools/sync-trees.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/trunk/tools/sync-trees.sh b/trunk/tools/sync-trees.sh
deleted file mode 100755
index 8eea0f6..0000000
--- a/trunk/tools/sync-trees.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-#MEDIA=/media/non-free/release
-[ -n "$1" ] && DRY_RUN=-n
-DIST=/cooker/i586
-ROOT=$DIST$MEDIA
-SOURCE=/live/mnt/BIG/dis/devel$ROOT
-DEST=/mnt/field/dis/local$ROOT
-TEST=media/main/release/media_info/UPDATING
-
-rsync $DRY_RUN -avP -lHz -e 'ssh -xc arcfour' --delete --delete-excluded --exclude 'debug_*/*/*' --exclude SRPMS $SOURCE/ $DEST
-
-if [ -e "$DEST/$TEST" ]; then
- echo
- echo "Warning: package upload in progress"
- echo "Resync tree!"
- exit 1
-fi
-
-exit 0