From 1fb7e78bfa86163c27c309d6244298d4b3075762 Mon Sep 17 00:00:00 2001 From: Matej Matuska Date: Fri, 2 Feb 2024 12:32:15 +0100 Subject: [PATCH 10/34] Make the reboot required text more visible in the console output The "A reboot is required to continue. Please reboot your system." message is printed before the reports summary and thus is easily overlooked by users. This patch adds a second such message after the report summary to improve this. Jira: RHEL-22736 --- commands/upgrade/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/commands/upgrade/__init__.py b/commands/upgrade/__init__.py index c42b7cba..cc5fe647 100644 --- a/commands/upgrade/__init__.py +++ b/commands/upgrade/__init__.py @@ -113,6 +113,11 @@ def upgrade(args, breadcrumbs): if workflow.failure: sys.exit(1) + elif not args.resume: + sys.stdout.write( + 'Reboot the system to continue with the upgrade.' + ' This might take a while depending on the system configuration.\n' + ) def register(base_command): -- 2.42.0