mixed up source & target

This commit is contained in:
Trevor Batley 2023-06-04 17:39:24 +10:00
parent b497a00693
commit 1aeb5b4c36

View File

@ -165,22 +165,26 @@ fi
# jq -r ' .external_wiki.external_wiki_url') # jq -r ' .external_wiki.external_wiki_url')
#if [ $DEBUG ] ; then echo "WIKILINK=$WIKILINK" ; fi #if [ $DEBUG ] ; then echo "WIKILINK=$WIKILINK" ; fi
# migrate the source package over to target with updated fields DATA=$(cat << EOT
if [ $DEBUG ] ; then echo "Migrating $SOURCEORG/$SOURCEPKG as $TARGETORG/$1 on $TARGETHOST" ; fi "auth_token": "$SOURCEACCESSTOKEN",
RESPONSE=$(curl $SILENT -k -X 'POST' \
"$TARGETHOST/api/v1/repos/migrate" \
-H 'accept: application/json' \
-H "Authorization: token $TARGETACCESSTOKEN" \
-H 'Content-Type: application/json' \
-d '{
"description": "'"SMEServer Koozali developed git repo for $TARGETPKG $BASEORCONTRIB"'", "description": "'"SMEServer Koozali developed git repo for $TARGETPKG $BASEORCONTRIB"'",
"clone_addr": "'"$TARGETHOST/$TARGETORG/$TARGETPKG.git"'", "clone_addr": "'"$SOURCEHOST/$TARGETORG/$TARGETPKG.git"'",
"repo_name": "'"$TARGETPKG"'", "repo_name": "'"$TARGETPKG"'",
"repo_owner": "'"$TARGETORG"'", "repo_owner": "'"$TARGETORG"'",
"external_tracker": { "external_tracker": {
"external_tracker_url": "'"https://bugs.koozali.org/buglist.cgi?component=$TARGETPKG&product=$PRODUCTBUGZILLA"'" "external_tracker_url": "'"https://bugs.koozali.org/buglist.cgi?component=$TARGETPKG&product=$PRODUCTBUGZILLA"'"
} }
}' EOT
)
# migrate the source package over to target with updated fields
if [ $DEBUG ] ; then echo "Migrating $SOURCEORG/$SOURCEPKG as $TARGETORG/$1 on $TARGETHOST" ; fi
RESPONSE=$(curl $SILENT -k -X 'POST' \
"$SOURCEHOST/api/v1/repos/migrate" \
-H 'accept: application/json' \
-H "Authorization: token $SOURCEACCESSTOKEN" \
-H 'Content-Type: application/json' \
-d "{ $DATA }"
) )
# Update the repo with the changed description, bugzilla url and wiki url # Update the repo with the changed description, bugzilla url and wiki url
#if [ $DEBUG ] ; then echo "Updating Description, Bug and Wiki links" ; fi #if [ $DEBUG ] ; then echo "Updating Description, Bug and Wiki links" ; fi