Skip to content

Commit

Permalink
Merge pull request #147 from yast/Code-11-SP4_bug_937942_2
Browse files Browse the repository at this point in the history
Evaluting partition device if the "device" name has not been set.
  • Loading branch information
schubi2 committed Sep 9, 2015
2 parents d581747 + 4d6676a commit 50e0d80
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.17.78
2.17.79
8 changes: 8 additions & 0 deletions package/autoyast2.changes
@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed Sep 9 13:10:11 CEST 2015 - schubi@suse.de

- Evaluating partition device if the "device" name has not been set.
For that the "type" entry has to be set properly.
Additional fix for bnc#937942
- version 2.17.79

-------------------------------------------------------------------
Wed Jul 15 17:42:16 CEST 2015 - schubi@suse.de

Expand Down
2 changes: 1 addition & 1 deletion src/modules/AutoinstStorage.ycp
Expand Up @@ -120,7 +120,7 @@
y2milestone("find_next_disk devs: %1", devs);
boolean found = false;
foreach (string device, devs, ``{
if( !found && device != after )
if( !found && after != "" && device != after )
continue;
if( device == after )
found = true;
Expand Down

0 comments on commit 50e0d80

Please sign in to comment.