Merge "Fix disabling of curlrc in healthcheck_curl"

This commit is contained in:
Zuul 2022-04-01 10:25:18 +00:00 committed by Gerrit Code Review
commit 089899d880
2 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,7 @@
: ${HEALTHCHECK_CURL_OUTPUT:='/dev/null'}
export NSS_SDB_USE_CACHE=no
curl -g -k -q -s -S --fail -o "${HEALTHCHECK_CURL_OUTPUT}" \
curl -q -g -k -s -S --fail -o "${HEALTHCHECK_CURL_OUTPUT}" \
--max-time "${HEALTHCHECK_CURL_MAX_TIME}" \
--user-agent "${HEALTHCHECK_CURL_USER_AGENT}" \
--write-out "${HEALTHCHECK_CURL_WRITE_OUT}" \

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes disabling the use of the ``curlrc`` configuration file in
``healthcheck_curl``. `LP#1967272 <https://launchpad.net/bugs/1967272>`__