From f7d589abdcdcd33b9f1f1b32300096e6a035b11f Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Fri, 10 May 2024 11:26:09 +0200 Subject: [PATCH] exclude kmod updates, they can depend on newer kernels this breaks the whole update transaction and *NO* updates are applied --- puppet/modules/unattended/manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet/modules/unattended/manifests/init.pp b/puppet/modules/unattended/manifests/init.pp index 6c206b1b1..07b9cf0a8 100644 --- a/puppet/modules/unattended/manifests/init.pp +++ b/puppet/modules/unattended/manifests/init.pp @@ -21,7 +21,7 @@ class { 'yum_cron': apply_updates => true, mailto => 'sysadmins', - exclude_packages => ['kernel*', 'java*', 'jenkins'], + exclude_packages => ['kernel*', 'kmod-*', 'java*', 'jenkins'], } } }