Skip to content

Commit

Permalink
move kdump auto to be able to install its packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Sep 26, 2019
1 parent c13a1a4 commit 173d421
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/clients/inst_autosetup.rb
Expand Up @@ -371,6 +371,14 @@ def main
# Register system
return :abort unless suse_register

# SLES only. Have to be run before software to add required packages to enable kdump
if Builtins.haskey(Profile.current, "kdump")
Call.Function(
"kdump_auto",
["Import", Ops.get_map(Profile.current, "kdump", {})]
)
end

# Software

return :abort if UI.PollInput == :abort && Popup.ConfirmAbort(:painless)
Expand Down Expand Up @@ -407,14 +415,6 @@ def main
Call.Function("deploy_image_auto", ["Write"])


# SLES only
if Builtins.haskey(Profile.current, "kdump")
Call.Function(
"kdump_auto",
["Import", Ops.get_map(Profile.current, "kdump", {})]
)
end

Progress.NextStage

if Profile.current.has_key? ('runlevel')
Expand Down

0 comments on commit 173d421

Please sign in to comment.