Skip to content

Commit

Permalink
- only allow to continue when init script ended correctly
Browse files Browse the repository at this point in the history
  (bnc#730186)
- 2.17.17


svn path=/branches/SuSE-Code-11-SP2-Branch/pos-installation/; revision=67219
  • Loading branch information
jsuchome committed Jan 17, 2012
1 parent 634dd63 commit 8a7eacf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.17.16
2.17.17
7 changes: 7 additions & 0 deletions package/yast2-pos-installation.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Jan 17 14:31:47 CET 2012 - jsuchome@suse.cz

- only allow to continue when init script ended correctly
(bnc#730186)
- 2.17.17

-------------------------------------------------------------------
Mon Dec 12 12:49:22 CET 2011 - jsuchome@suse.cz

Expand Down
6 changes: 5 additions & 1 deletion src/clients/firstboot_slepos_installation.ycp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ Proceed according to the manual."), exit_status));
}

Wizard::EnableBackButton ();
Wizard::EnableNextButton ();
// only allow to continue when script ended correctly
if (exit_status == 0)
{
Wizard::EnableNextButton ();
}

while (true)
{
Expand Down

0 comments on commit 8a7eacf

Please sign in to comment.