You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2005/12/28 11:47:44 UTC

svn commit: r359476 - /maven/components/trunk/maven-meeper/src/bin/ibiblio-sync/sync-apache-m2.sh

Author: brett
Date: Wed Dec 28 02:47:42 2005
New Revision: 359476

URL: http://svn.apache.org/viewcvs?rev=359476&view=rev
Log:
add script to sync from apache m2 repo

Added:
    maven/components/trunk/maven-meeper/src/bin/ibiblio-sync/sync-apache-m2.sh   (with props)

Added: maven/components/trunk/maven-meeper/src/bin/ibiblio-sync/sync-apache-m2.sh
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-meeper/src/bin/ibiblio-sync/sync-apache-m2.sh?rev=359476&view=auto
==============================================================================
--- maven/components/trunk/maven-meeper/src/bin/ibiblio-sync/sync-apache-m2.sh (added)
+++ maven/components/trunk/maven-meeper/src/bin/ibiblio-sync/sync-apache-m2.sh Wed Dec 28 02:47:42 2005
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+echo This script is very temporary. Please validate all input files in the apache repository before blindly copying them in.
+echo Ensure all artifacts have a valid POM, and are signed used PGP.
+echo This will be removed when the repository manager is in place.
+
+OPTS=-n
+if [ "$1" == "go" ]; then
+  echo Doing sync for real
+  OPTS=
+fi
+
+cd $HOME/repository-staging/to-ibiblio/maven2
+echo rsync --exclude="README.txt" -e ssh $OPTS -avz jvanzyl@cvs.apache.org:/www/www.apache.org/dist/maven-repository/* .
+rsync --exclude="README.txt" -e ssh $OPTS -avz jvanzyl@cvs.apache.org:/www/www.apache.org/dist/maven-repository/* .

Propchange: maven/components/trunk/maven-meeper/src/bin/ibiblio-sync/sync-apache-m2.sh
------------------------------------------------------------------------------
    svn:executable = *