diff options
author | Serena Feng <feng.xiaowei@zte.com.cn> | 2017-07-05 01:02:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-05 01:02:14 +0000 |
commit | 4ec87bd88fe9b176a61ff13b5e50b8ede4f3498f (patch) | |
tree | 1fe72d4bd1e7ecaf572dd1b165f4bf8306b59b95 /docker | |
parent | e32f797894cbc66a73976e50bcdb8e59f02eedc2 (diff) | |
parent | 8cb3aa971adf99146a462264b9f3e1c74dd17d64 (diff) |
Merge "Update the link to firewall_block_image.img"
Diffstat (limited to 'docker')
-rw-r--r-- | docker/add_images.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/add_images.sh b/docker/add_images.sh index 919cecd8..1e5382c2 100644 --- a/docker/add_images.sh +++ b/docker/add_images.sh @@ -2,13 +2,15 @@ # # This script downloads the images that are used for testing # and places them in the functest docker image +set -e -CIRROS_REPO_URL=http://download.cirros-cloud.net +CIRROS_REPO_URL=https://download.cirros-cloud.net CIRROS_AARCH64_TAG=161201 CIRROS_X86_64_TAG=0.3.5 wget ${CIRROS_REPO_URL}/${CIRROS_X86_64_TAG}/cirros-${CIRROS_X86_64_TAG}-x86_64-disk.img -P ${FUNCTEST_IMAGES_DIR} wget ${CIRROS_REPO_URL}/${CIRROS_X86_64_TAG}/cirros-${CIRROS_X86_64_TAG}-x86_64-lxc.tar.gz -P ${FUNCTEST_IMAGES_DIR} +wget http://artifacts.opnfv.org/onosfw/images/firewall_block_image.img -P ${FUNCTEST_IMAGES_DIR} # Add the 3-part image for aarch64, since functest can be run from an x86 machine to test an aarch64 POD wget ${CIRROS_REPO_URL}/daily/20${CIRROS_AARCH64_TAG}/cirros-d${CIRROS_AARCH64_TAG}-aarch64-disk.img -P ${FUNCTEST_IMAGES_DIR} |