diff --git a/pkg/storaged/manifest.json b/pkg/storaged/manifest.json index 8ee17324b82..e03ed9d7166 100644 --- a/pkg/storaged/manifest.json +++ b/pkg/storaged/manifest.json @@ -64,7 +64,8 @@ "stratis_package": { "fedora": "stratisd", "centos": "stratisd", "arch": "stratisd", - "platform:el9": "stratisd" + "platform:el9": "stratisd", + "platform:el10": "stratisd" }, "nbde_root_help": { "fedora": true, "centos": true, diff --git a/test/verify/check-storage-luks b/test/verify/check-storage-luks index a1e04936020..e8790e19378 100755 --- a/test/verify/check-storage-luks +++ b/test/verify/check-storage-luks @@ -775,7 +775,7 @@ class TestStorageNBDE(storagelib.StorageCase, packagelib.PackageCase): # Tell the initrd to configure our special inter-machine # network that has the "tang" machine. # - iface = "ens15" if m.image.startswith(("centos-10", "rhel-10")) else "eth1" + iface = "ens15" if m.image in ["centos-10"] else "eth1" m.execute(f"grubby --update-kernel=ALL --args='ip=10.111.112.1::10.111.112.1:255.255.255.0::{iface}:off'") try: diff --git a/test/verify/files/mock-insights b/test/verify/files/mock-insights index ce7dedfa205..0112a9f537b 100755 --- a/test/verify/files/mock-insights +++ b/test/verify/files/mock-insights @@ -210,7 +210,7 @@ def insights_server(port): subprocess.check_call(["sscg"], cwd=certdir) httpd = HTTPServer(('', port), handler) - ctx = ssl.create_default_context() + ctx = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH) ctx.check_hostname = False ctx.verify_mode = ssl.CERT_OPTIONAL # with newer Pythons this is ctx.minimum_version = ssl.TLSVersion.TLSv1_2