Skip to content

Commit

Permalink
Merge pull request #426 from yast/reprobe-after-dasd
Browse files Browse the repository at this point in the history
Re-probe after initializing DASD or zFCP
  • Loading branch information
imobachgs committed Apr 18, 2018
2 parents 31b7a58 + 76c486d commit c129729
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions package/autoyast2.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Apr 16 11:45:45 UTC 2018 - igonzalezsosa@suse.com

- Probe storage devices again after initializing DASD or zFCP
devices (bsc#1089326 and bsc#1089554).
- 4.0.48

-------------------------------------------------------------------
Mon Apr 16 07:53:36 UTC 2018 - lslezak@suse.cz

Expand Down
2 changes: 1 addition & 1 deletion package/autoyast2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
%endif

Name: autoyast2
Version: 4.0.47
Version: 4.0.48
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
5 changes: 3 additions & 2 deletions src/clients/inst_autosetup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ def main

# moved here from autoinit for fate #301193
# needs testing
if Arch.s390 && AutoinstConfig.remoteProfile == true
s390_and_remote_profile = Arch.s390 && AutoinstConfig.remoteProfile == true
if s390_and_remote_profile
Builtins.y2milestone("arch=s390 and remote_profile=true")
if Builtins.haskey(Profile.current, "dasd")
Builtins.y2milestone("dasd found")
Expand All @@ -277,7 +278,7 @@ def main

Progress.NextStage

probe_storage if modified_profile?
probe_storage if modified_profile? || s390_and_remote_profile

if Profile.current["partitioning_advanced"] && !Profile.current["partitioning_advanced"].empty?
write_storage = AutoinstStorage.ImportAdvanced(Profile.current["partitioning_advanced"])
Expand Down

0 comments on commit c129729

Please sign in to comment.