Skip to content

Commit

Permalink
Merge pull request #110 from yast/mkinitrd_removal_sp6
Browse files Browse the repository at this point in the history
Mkinitrd removal sp6
  • Loading branch information
jreidinger committed Mar 6, 2024
2 parents 1a20b8f + 69fe852 commit fce6d05
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions package/yast2-s390.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Mar 6 09:00:01 UTC 2024 - Josef Reidinger <jreidinger@suse.com>

- Replace 'mkinitrd' with dracut (bsc#1220995)
- 4.6.6

-------------------------------------------------------------------
Tue Dec 12 14:35:37 UTC 2023 - Steffen Maier <maier@linux.ibm.com>

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


Name: yast2-s390
Version: 4.6.5
Version: 4.6.6
Release: 0
Group: System/YaST
License: GPL-2.0-only
Expand Down
6 changes: 3 additions & 3 deletions src/lib/y2s390/dialogs/mkinitrd.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
module Y2S390
module Dialogs
class Mkinitrd < ::UI::Dialog
CMD = "/sbin/mkinitrd".freeze
CMD = ["/usr/bin/dracut", "--force"].freeze

def dialog_content
textdomain "s390"
Label(_("Running mkinitrd."))
Label(_("Running dracut."))
end

def self.run
Expand All @@ -16,7 +16,7 @@ def self.run

def run
create_dialog
Yast::Execute.on_target(CMD)
Yast::Execute.on_target(*CMD)
close_dialog
end
end
Expand Down
4 changes: 2 additions & 2 deletions src/modules/ZFCPController.rb
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ def Write
if !Mode.installation
if @disk_configured
# popup label
UI.OpenDialog(Label(_("Running mkinitrd.")))
UI.OpenDialog(Label(_("Running dracut.")))

command = "/sbin/mkinitrd"
command = "/usr/bin/dracut --force"
Builtins.y2milestone("Running command %1", command)
ret = SCR.Execute(path(".target.bash"), command)
Builtins.y2milestone("Exit code: %1", ret)
Expand Down

0 comments on commit fce6d05

Please sign in to comment.