Skip to content

Commit

Permalink
Merge pull request #1129 from yast/show_dialog_explicit
Browse files Browse the repository at this point in the history
Show dialog explicit
  • Loading branch information
jreidinger authored Dec 17, 2024
2 parents e95ed3f + bd5ffb4 commit d6e59e1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions package/yast2-installation.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Tue Dec 17 15:56:21 UTC 2024 - Josef Reidinger <[email protected]>

- skip showing reboot message in autoinstallation and
autoupgrade mode only if not explicitly set on command line
(bsc#1231522)
- 4.7.3

-------------------------------------------------------------------
Tue Dec 17 15:05:22 UTC 2024 - Ladislav Slezák <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-installation.spec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

Name: yast2-installation
Version: 4.7.2
Version: 4.7.3
Release: 0
Summary: YaST2 - Installation Parts
License: GPL-2.0-only
Expand Down
5 changes: 4 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,10 @@ def report_messages
if Linuxrc.reboot_timeout
Report.DisplayMessages(true, Linuxrc.reboot_timeout)
else
# Skip in autoinstallation and autoupgrade mode only if not explicitly
# 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 d6e59e1

Please sign in to comment.