mirror of https://github.com/apache/archiva.git
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:
parent
86ffd66d46
commit
8706c17e63
|
@ -1,11 +1,16 @@
|
|||
#!/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-java.net.properties
|
||||
|
||||
dir=/home/maven/repository-staging/to-ibiblio
|
||||
src=$dir/maven2-converted-from-maven1
|
||||
dst=$dir/maven2
|
||||
log=$SYNC_REPORTS/last-changes.log
|
||||
|
||||
rsync --ignore-existing -rvpl $src/ $dst/ > $log
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ export SYNCOPATE=$SYNC_TOOLS/syncopate
|
|||
export M2_SYNC=$SYNC_TOOLS/m2-sync
|
||||
export REPOCLEAN=$TOOLS_BASE/m1-m2-conversion
|
||||
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 MAVEN1_REPO=$STAGING_DIR/maven
|
||||
|
|
|
@ -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
|
||||
|
||||
) 2>&1 | tee $HOME/repository-staging/to-ibiblio/reports/sync/last-sync-results.txt
|
||||
) 2>&1 | tee $SYNC_REPORTS/last-sync-results.txt
|
||||
|
|
Loading…
Reference in New Issue