Skip to content

Commit

Permalink
- reread storage after DASD configuration (bnc#808695)
Browse files Browse the repository at this point in the history
  • Loading branch information
aschnell committed Mar 14, 2013
1 parent ec027bd commit d4bc3fe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions package/yast2-s390.changes
Expand Up @@ -3,6 +3,7 @@ Thu Mar 14 14:30:30 CET 2013 - aschnell@suse.de

- removed non-functioning button to not write label during DASD
formatting (bnc#808275)
- reread storage after DASD configuration (bnc#808695)
- 2.22.2

-------------------------------------------------------------------
Expand Down
10 changes: 7 additions & 3 deletions src/clients/dasd_proposal.ycp
Expand Up @@ -32,6 +32,7 @@

import "DASDController";
import "Wizard";
import "Storage";

string func = (string) WFM::Args(0);
map param = (map) WFM::Args(1);
Expand All @@ -54,9 +55,12 @@
// Run an interactive workflow
else if ( func == "AskUser" )
{
Wizard::CreateDialog ();
any sequence = WFM::CallFunction ("inst_dasd", []);
Wizard::CloseDialog ();
Wizard::CreateDialog();
Storage::ActivateHld(false);
any sequence = WFM::CallFunction("inst_dasd", []);
Storage::ReReadTargetMap();
Wizard::CloseDialog();

// Fill return map
ret =
$[ "workflow_sequence" : sequence
Expand Down

0 comments on commit d4bc3fe

Please sign in to comment.