Use -k (insecure) curl mode for result upload
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 29 Nov 2018 22:12:24 +0000 (17:12 -0500)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 29 Nov 2018 22:12:24 +0000 (17:12 -0500)
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
lava/upload_artifact.sh

index 333593bdca2b2c18ec218b07e3b56db667ff2fe0..7b699c106bc143c8e8d57298de180dfaf7ed2f3b 100755 (executable)
@@ -29,7 +29,7 @@ date=`date -R`
 _signature="PUT\n\n${content_type}\n${date}\n${resource}"
 signature=`echo -en ${_signature} | openssl sha1 -hmac ${s3_s} -binary | base64`
 
-curl -v -X PUT -T "${file}" \
+curl -v -k -X PUT -T "${file}" \
           -H "Host: $host" \
           -H "Date: ${date}" \
           -H "Content-Type: ${content_type}" \
This page took 0.024848 seconds and 4 git commands to generate.