Re: poudriere overlay: passing down git ENV variables (problem: self signed certificates)

From: Michael Gmelin <grembo_at_freebsd.org>
Date: Wed, 03 Aug 2022 22:55:38 UTC

> On 4. Aug 2022, at 00:38, Tatsuki Makino <tatsuki_makino@hotmail.com> wrote:
> 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...
> 

Thanks, I simply copy and pasted what the requester used (assuming they already tested that exact value outside of poudriere), since my response was about the mechanics of how to get that variable in and not its name.

Cheers
Michael



> Regards.