From 3631316e36ee9c97ae62d97661a86b69a4791a1a Mon Sep 17 00:00:00 2001 From: Sanne Raymaekers Date: Tue, 16 Jan 2024 14:35:07 +0100 Subject: [PATCH] tools/build-rpms: fix getting the osbuild commit from Schutzfile osbuild/osbuild-composer#3614 removed the rhel-8.6, the centos-stream-9 entry should be there for a while at least. --- tools/build-rpms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build-rpms.py b/tools/build-rpms.py index 1fc88b8a4..dd33eae75 100755 --- a/tools/build-rpms.py +++ b/tools/build-rpms.py @@ -144,7 +144,7 @@ def run_ansible(args, key_material): with open(args.base_dir / "Schutzfile") as f: osbuild_commit = json.load( - f)["rhel-8.6"]["dependencies"]["osbuild"]["commit"] + f)["centos-stream-9"]["dependencies"]["osbuild"]["commit"] return run_command(["ansible-playbook", "--ssh-extra-args", "-o ControlPersist=no -o StrictHostKeyChecking=no -o ServerAliveInterval=5",