From f1eb3029aa481bfae0ed479947c4f936d9be6db0 Mon Sep 17 00:00:00 2001 From: David Kirwan Date: Thu, 24 Mar 2022 10:17:10 +0000 Subject: [PATCH] image-builder: limit enabling osbuild plugin to staging koji builders --- roles/koji_builder/templates/kojid.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/koji_builder/templates/kojid.conf b/roles/koji_builder/templates/kojid.conf index 0ae1c3cbd1..f7c05c8db3 100644 --- a/roles/koji_builder/templates/kojid.conf +++ b/roles/koji_builder/templates/kojid.conf @@ -154,7 +154,11 @@ keytab = /etc/kojid/kojid.keytab {% endif %} {{ plugins.append("rpmautospec_builder") }} + + +{% if env == "staging" %} {{ plugins.append("osbuild") }} +{% endif %} ; Config for the runroot plugin lives in /etc/kojid/runroot.conf, if enabled plugins = {{ plugins | join(" ") }}