sahara-image-pack: use curl for tarballs.openstack.org

It seems that wget throws some errors from time to time when getting
content from tarballs.openstack.org.
The errors are SSL-related, maybe some interaction between the SSL libaries
of the libguestfs appliance and the load balancing configuration
of tarballs.openstack.org (SNI-based).
curl seems to be immune, so let's use it.

Story: 2003961
Task: 26890
Change-Id: Ia5793a4be8cde352329e861c46de8c4eeac4312e
This commit is contained in:
Luigi Toscano 2018-10-01 14:26:34 +02:00
parent e25fc04848
commit 594b6381c8
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ extjs_archive=/tmp/${extjs_basepath}
extjs_folder="${extjs_basepath%.*}"
function setup_extjs {
wget -O $extjs_archive $EXTJS_DOWNLOAD_URL
curl -sS -o $extjs_archive $EXTJS_DOWNLOAD_URL
mkdir -p $EXTJS_DESTINATION_DIR
}