Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)
- Reply: Michael Gmelin : "Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)"
- Reply: FreeBSD User : "Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)"
- In reply to: FreeBSD User : "Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 03 Aug 2022 22:37:48 UTC
Hello. In git-2.37.1/http.c... ︙ if (!curl_ssl_verify) { curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0); curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0); } else { ︙ if (getenv("GIT_SSL_NO_VERIFY")) curl_ssl_verify = 0; ︙ Thus, it was GIT_SSL_NO_VERIFY, not GIT_NO_SSL_VERIFY... Regards.