From 1c7838b25ad30de7de3d73930a18b7c20c4b7c25 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 20 Mar 2022 18:18:13 -0700 Subject: [PATCH] Add exclude on httpd for proxies to avoid upgrading to new buggy version. Also, remove old armv7 entry thats no longer needed. Signed-off-by: Kevin Fenzi --- roles/dnf-automatic/templates/automatic.conf.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/dnf-automatic/templates/automatic.conf.j2 b/roles/dnf-automatic/templates/automatic.conf.j2 index 4beedc4d8c..dc1b7d8747 100644 --- a/roles/dnf-automatic/templates/automatic.conf.j2 +++ b/roles/dnf-automatic/templates/automatic.conf.j2 @@ -49,8 +49,8 @@ email_host = localhost # Use this to filter DNF core messages debuglevel = 1 -{% if ansible_architecture == 'armv7l' %} -# On arm builders, do not uppdate dnf or rpm. -# https://bugzilla.redhat.com/show_bug.cgi?id=1691430 -exclude = dnf*,python3-dnf*,python3-libdnf,python3-hawkey,libdnf,libsolv,librepo +{% if inventory_hostname.startswith('proxy') %} +# exclude httpd for now as it's causing lockups in httpd-2.4.52+ +# https://bz.apache.org/bugzilla/show_bug.cgi?id=65769 +exclude = httpd* {% endif %}