Skip to content
Snippets Groups Projects
Commit f4b128f7 authored by Steven Dake's avatar Steven Dake
Browse files

Use -L flag in curl

The cirros image uses a redirect.  Use curl -L to follow redirections.

Change-Id: I3a9309901ab3528442009fd6802600c51c98242f
parent 17eccb0d
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ docker-compose -f ./compose/nova-compute-network.yml up -d
IMAGE_URL=http://download.cirros-cloud.net/0.3.3/
IMAGE=cirros-0.3.3-x86_64-disk.img
if ! [ -f "$IMAGE" ]; then
curl -o ./$IMAGE $IMAGE_URL/$IMAGE
curl -L -o ./$IMAGE $IMAGE_URL/$IMAGE
fi
until keystone user-list | grep glance
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment