Skip to content

Commit

Permalink
Merge SLE15 SP6 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Jan 11, 2024
1 parent 0ccf079 commit 24e7ad4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions package/yast2-bootloader.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed Jan 10 23:16:39 UTC 2024 - Josef Reidinger <[email protected]>

- Do not try finding undefined bootloader name to avoid error
in logs (bsc#1218700)
- 5.0.3


-------------------------------------------------------------------
Mon Sep 4 06:40:19 UTC 2023 - Stefan Schubert <[email protected]>

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


Name: yast2-bootloader
Version: 5.0.2
Version: 5.0.3
Release: 0
Summary: YaST2 - Bootloader Configuration
License: GPL-2.0-or-later
Expand Down
5 changes: 4 additions & 1 deletion src/lib/bootloader/bootloader_factory.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ def proposed
end

def system
bootloader_by_name(Sysconfig.from_system.bootloader)
sysconfig_name = Sysconfig.from_system.bootloader
return nil unless sysconfig_name

bootloader_by_name(sysconfig_name)
end

def current
Expand Down

0 comments on commit 24e7ad4

Please sign in to comment.