diff options
author | 2023-01-18 09:51:22 +0100 | |
---|---|---|
committer | 2023-01-18 09:57:25 +0100 | |
commit | 1e6a2788ca3118885c64276dc862f98d53d4ac99 (patch) | |
tree | f96c9464f35bd29bee6e65a1a84279f7d00a82ba /nfvbenchvm | |
parent | 1c9894ba0ccb31d64c5b2d15c700b98e332e0672 (diff) |
nfvbenchvm: fix image URL in build log
Update the link to access to the qcow2 VM image in Google storage: use
https instead of http
Change-Id: I315fec57ae12256753bc9abf561c29aafa9aa325
Signed-off-by: Gwenael Lambrouin <gwenael.lambrouin@orange.com>
Diffstat (limited to 'nfvbenchvm')
-rwxr-xr-x | nfvbenchvm/dib/build-image.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nfvbenchvm/dib/build-image.sh b/nfvbenchvm/dib/build-image.sh index c5d24da..c320192 100755 --- a/nfvbenchvm/dib/build-image.sh +++ b/nfvbenchvm/dib/build-image.sh @@ -130,7 +130,7 @@ function build_image { echo "Checking if image exists in google storage..." if command -v gsutil >/dev/null; then if gsutil -q stat gs://$gs_url/$1.qcow2; then - echo "Image already exists at http://$gs_url/$1.qcow2" + echo "Image already exists at https://$gs_url/$1.qcow2" echo "Build is skipped" exit 0 fi @@ -204,7 +204,7 @@ function build_image { if command -v gsutil >/dev/null; then echo "Uploading $1.qcow2..." gsutil cp $1.qcow2 gs://$gs_url/$1.qcow2 - echo "You can access to image at http://$gs_url/$1.qcow2" + echo "You can access to image at https://$gs_url/$1.qcow2" else echo "Cannot upload new image to the OPNFV artifact repository (gsutil not available)" exit 1 |