From 226955482912ec4836279b154fa510106fa74c64 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Thu, 25 Apr 2024 09:22:47 -0700 Subject: [PATCH] osbuild-depsolve-dnf5: Fix sslverify setting It was accidentally switched to being set on repo instead of conf when it was renamed in commit ffa1e917076c94bf3bbc919038693c6538f641a7 --- tools/osbuild-depsolve-dnf5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osbuild-depsolve-dnf5 b/tools/osbuild-depsolve-dnf5 index 64afd199..029d6033 100755 --- a/tools/osbuild-depsolve-dnf5 +++ b/tools/osbuild-depsolve-dnf5 @@ -223,7 +223,7 @@ class Solver(): else: raise ValueError("missing either `baseurl`, `metalink`, or `mirrorlist` in repo") - repo.sslverify = desc.get("sslverify", True) + conf.sslverify = desc.get("sslverify", True) if "sslcacert" in desc: conf.sslcacert = desc["sslcacert"] if "sslclientkey" in desc: