From 8c05387ebcda7a556c24896d23795bd534f4f8b4 Mon Sep 17 00:00:00 2001 From: Greg Becker Date: Mon, 22 Feb 2021 14:00:59 -0800 Subject: [PATCH] respect -k/verify-ssl-false in _existing_url method (#21864) --- lib/spack/spack/fetch_strategy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/spack/spack/fetch_strategy.py b/lib/spack/spack/fetch_strategy.py index f075b893aec..1b94206fbf6 100644 --- a/lib/spack/spack/fetch_strategy.py +++ b/lib/spack/spack/fetch_strategy.py @@ -324,6 +324,8 @@ def _existing_url(self, url): # Telling curl to fetch the first byte (-r 0-0) is supposed to be # portable. curl_args = ['--stderr', '-', '-s', '-f', '-r', '0-0', url] + if not spack.config.get('config:verify_ssl'): + curl_args.append('-k') _ = curl(*curl_args, fail_on_error=False, output=os.devnull) return curl.returncode == 0