From 2f687633faca58ab8fbd963e971f79e3bc647457 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 3 Aug 2022 09:55:33 -0700 Subject: [PATCH] buildvm-a32 / dnf-automatic: try and get dnf automatic to not install non lpae kernels Signed-off-by: Kevin Fenzi --- roles/dnf-automatic/templates/automatic.conf.j2 | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/roles/dnf-automatic/templates/automatic.conf.j2 b/roles/dnf-automatic/templates/automatic.conf.j2 index f153212b0d..168edac47c 100644 --- a/roles/dnf-automatic/templates/automatic.conf.j2 +++ b/roles/dnf-automatic/templates/automatic.conf.j2 @@ -49,20 +49,12 @@ email_host = localhost # Use this to filter DNF core messages debuglevel = 1 -{% 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 %} -{% 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 %} {% if inventory_hostname.startswith('pkgs') %} # exclude jq-1.6-3.el8 # as it's causing segfaults in https pushes # by running out of memory exclude = jq-1.6-3.el8 {% endif %} +{% if inventory_hostname.startswith('buildvm-a32') %} +exclude = kernel-core*,kernel-modules* +{% endif %}