Just don't use the --insecure CURL's option anymore (fixes #2)

This commit is contained in:
Samuel FORESTIER 2017-09-20 17:03:35 -04:00
parent afccc39b37
commit 2c757cdfeb
No known key found for this signature in database
GPG Key ID: 4B6FA04B1AC95DD4

View File

@ -1,6 +1,5 @@
#!/bin/sh #!/bin/sh
#
# Script d'envoi de notification SMS via l'API Free Mobile # Script d'envoi de notification SMS via l'API Free Mobile
# https://github.com/C-Duv/freemobile-smsapi-client # https://github.com/C-Duv/freemobile-smsapi-client
# #
@ -147,16 +146,12 @@ FINAL_MESSAGE_TO_SEND=$(\
# echo "Newline encoded message:" #DEBUG # echo "Newline encoded message:" #DEBUG
# echo "${FINAL_MESSAGE_TO_SEND}" #DEBUG # echo "${FINAL_MESSAGE_TO_SEND}" #DEBUG
# Particularités de l'appel de curl et la/les options associées : # Particularités de l'appel de curl et son option associée :
# * Le certificat de $SMSAPI_BASEURL ne fourni pas d'informations sur son
# propriétaire :
# --insecure
# * Renvoi le code réponse HTTP uniquement : # * Renvoi le code réponse HTTP uniquement :
# --write-out "%{http_code}" --silent --output /dev/null # --write-out "%{http_code}" --silent --output /dev/null
# #
HTTP_STATUS_CODE=$(\ HTTP_STATUS_CODE=$(\
curl \ curl \
--insecure \
--write-out "%{http_code}" \ --write-out "%{http_code}" \
--silent \ --silent \
--output /dev/null \ --output /dev/null \