From 2c060727f6dfcfa1532d05e1f25ad3a8cd3df4cc Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 9 May 2022 10:53:28 -0700 Subject: [PATCH] dnf-automatic / builders: don't allow dnf-automatic to upgrade git for now git 2.35.3 broke buildSRPMFromSCM tasks, we want to downgrade back to 2.35.1 for now until it's fixed in koji. See https://pagure.io/koji/issue/3351 and https://pagure.io/fedora-infrastructure/issue/10677 Signed-off-by: Kevin Fenzi --- roles/dnf-automatic/templates/automatic.conf.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/dnf-automatic/templates/automatic.conf.j2 b/roles/dnf-automatic/templates/automatic.conf.j2 index dc1b7d8747..ae58db0478 100644 --- a/roles/dnf-automatic/templates/automatic.conf.j2 +++ b/roles/dnf-automatic/templates/automatic.conf.j2 @@ -54,3 +54,9 @@ debuglevel = 1 # https://bz.apache.org/bugzilla/show_bug.cgi?id=65769 exclude = httpd* {% endif %} +{% if inventory_hostname.startswith('build') %} +# exclude git for now as it's breaking koji +# https://pagure.io/fedora-infrastructure/issue/10677 +# https://pagure.io/koji/issue/3351 +exclude = git* +{% endif %}