41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
From e1af3642a7811229567284f6901d393a6ce28b62 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
|
Date: Thu, 23 Nov 2023 16:26:06 +0100
|
|
Subject: [PATCH] needs-restarting: Add microcode_ctl to a reboot list
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
commit 9f46488c6b1ac553989a3fd8a9ea18271451c5e8 upstream.
|
|
|
|
To fully update CPU microcode, a reboot is needed because the
|
|
microcode update should be applied before starting a kernel and other
|
|
process.
|
|
|
|
Therefore recommend a reboot after installing or updating
|
|
microcode_ctl package.
|
|
|
|
https://issues.redhat.com/browse/RHEL-17356
|
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
---
|
|
plugins/needs_restarting.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/plugins/needs_restarting.py b/plugins/needs_restarting.py
|
|
index 64d4d0f..92cde0a 100644
|
|
--- a/plugins/needs_restarting.py
|
|
+++ b/plugins/needs_restarting.py
|
|
@@ -40,7 +40,8 @@ import time
|
|
# For which package updates we should recommend a reboot
|
|
# Mostly taken from https://access.redhat.com/solutions/27943
|
|
NEED_REBOOT = ['kernel', 'kernel-rt', 'glibc', 'linux-firmware',
|
|
- 'systemd', 'dbus', 'dbus-broker', 'dbus-daemon']
|
|
+ 'systemd', 'dbus', 'dbus-broker', 'dbus-daemon',
|
|
+ 'microcode_ctl']
|
|
|
|
NEED_REBOOT_DEPENDS_ON_DBUS = ['zlib']
|
|
|
|
--
|
|
2.43.0
|
|
|