From d8f5db121329ffd1fe4003ec632b42fd91a97018 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 1 Jun 2019 17:13:42 +0000 Subject: [PATCH] dnf-automatic: do not update kernels on armv7 builders, security update or no security update. Signed-off-by: Kevin Fenzi --- roles/dnf-automatic/templates/automatic.conf.j2 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/roles/dnf-automatic/templates/automatic.conf.j2 b/roles/dnf-automatic/templates/automatic.conf.j2 index 43730ac019..f8e479cc84 100644 --- a/roles/dnf-automatic/templates/automatic.conf.j2 +++ b/roles/dnf-automatic/templates/automatic.conf.j2 @@ -49,4 +49,8 @@ email_host = localhost # Use this to filter DNF core messages debuglevel = 1 - +{% if ansible_architecture == 'armv7l' %} +# On arm builders do NOT update the kernel. +# See https://bugzilla.redhat.com/show_bug.cgi?id=1576593 +exclude = kernel* +{% endif %}