o adding SYNC_REPORTS envar and using it the conversion report

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@471581 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-11-06 00:29:02 +00:00
parent 86ffd66d46
commit 8706c17e63
3 changed files with 7 additions and 1 deletions

View File

@ -1,11 +1,16 @@
#!/bin/sh #!/bin/sh
syncProperties=$1
. $syncProperties
java -jar archiva-cli-1.0-SNAPSHOT-cli.jar -c synchronize.properties java -jar archiva-cli-1.0-SNAPSHOT-cli.jar -c synchronize.properties
#java -jar archiva-cli-1.0-SNAPSHOT-cli.jar -c synchronize-java.net.properties #java -jar archiva-cli-1.0-SNAPSHOT-cli.jar -c synchronize-java.net.properties
dir=/home/maven/repository-staging/to-ibiblio dir=/home/maven/repository-staging/to-ibiblio
src=$dir/maven2-converted-from-maven1 src=$dir/maven2-converted-from-maven1
dst=$dir/maven2 dst=$dir/maven2
log=$SYNC_REPORTS/last-changes.log
rsync --ignore-existing -rvpl $src/ $dst/ > $log rsync --ignore-existing -rvpl $src/ $dst/ > $log

View File

@ -7,6 +7,7 @@ export SYNCOPATE=$SYNC_TOOLS/syncopate
export M2_SYNC=$SYNC_TOOLS/m2-sync export M2_SYNC=$SYNC_TOOLS/m2-sync
export REPOCLEAN=$TOOLS_BASE/m1-m2-conversion export REPOCLEAN=$TOOLS_BASE/m1-m2-conversion
export M1_M2_REWRITE_RULES=$SYNC_TOOLS/m1-m2-mod-rewrite-rules.txt export M1_M2_REWRITE_RULES=$SYNC_TOOLS/m1-m2-mod-rewrite-rules.txt
export SYNC_REPORTS=$HOME/repository-staging/to-ibiblio/reports/sync
export STAGING_DIR=$HOME/repository-staging/to-ibiblio export STAGING_DIR=$HOME/repository-staging/to-ibiblio
export MAVEN1_REPO=$STAGING_DIR/maven export MAVEN1_REPO=$STAGING_DIR/maven

View File

@ -120,4 +120,4 @@ cp $M1_M2_REWRITE_RULES $MAVEN1_REPO/.htaccess
scp $M1_M2_REWRITE_RULES maven@login.ibiblio.org:/public/html/maven/.htaccess scp $M1_M2_REWRITE_RULES maven@login.ibiblio.org:/public/html/maven/.htaccess
) 2>&1 | tee $HOME/repository-staging/to-ibiblio/reports/sync/last-sync-results.txt ) 2>&1 | tee $SYNC_REPORTS/last-sync-results.txt