qa/workunits/rados: specify redirect in curl command

This workunit currently grabs files in html form, since
there is a redirect that occurs. If we specify `-L` in the
curl command, it handles redirects and graps the files
appropriately.

Fixes: https://tracker.ceph.com/issues/58046
Signed-off-by: Laura Flores <lflores@redhat.com>
This commit is contained in:
Laura Flores 2022-11-18 00:31:59 +00:00
parent d5045f7142
commit bf30531f01

View File

@ -44,7 +44,7 @@ function cleanup () {
function get_sources () {
for s in $SOURCES ; do
curl --progress-bar --output $s ${DL_PREFIX}$s
curl --progress-bar --output $s -L ${DL_PREFIX}$s
done
}