Skip to content

Commit

Permalink
skip showing reboot message only if not explicitelly set on command l…
Browse files Browse the repository at this point in the history
…ine (bsc#1231522)
  • Loading branch information
jreidinger committed Dec 17, 2024
1 parent e6ebc98 commit 4c3af02
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/installation/clients/inst_finish.rb
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ def write

def report_messages
return if Misc.boot_msg.empty?
return if Mode.auto

# --------------------------------------------------------------
# Check if there is a message left to display
Expand All @@ -148,6 +147,9 @@ def report_messages
if Linuxrc.reboot_timeout
Report.DisplayMessages(true, Linuxrc.reboot_timeout)
else
# Skip in autoinstallation and autoupgrade mode only if not explicitelly
# set on command line (bsc#1231522)
return if Mode.auto
# Display the message and wait for user to accept it
# also live installation - bzilla #297691
Report.DisplayMessages(true,
Expand Down

0 comments on commit 4c3af02

Please sign in to comment.