diff options
-rw-r--r-- | deployment/noheat/infra-openstack/vagrant/Vagrantfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deployment/noheat/infra-openstack/vagrant/Vagrantfile b/deployment/noheat/infra-openstack/vagrant/Vagrantfile index 96f640e95..8acdf1442 100644 --- a/deployment/noheat/infra-openstack/vagrant/Vagrantfile +++ b/deployment/noheat/infra-openstack/vagrant/Vagrantfile @@ -86,8 +86,8 @@ SCRIPT $add_os_image = <<-SCRIPT url="$1" name="$2" - image="$(mktemp)" - wget --quiet --output-document="$image" "$url" + image="/root/${name}.img" + wget --quiet --continue --output-document="$image" "$url" export OS_CLOUD=openstack openstack image create "$name" --public --disk-format qcow2 --container-format bare --file "$image" SCRIPT |