Skip to content

Commit

Permalink
Merge pull request #48 from k0da/master
Browse files Browse the repository at this point in the history
Fix broken disklabel (bnc#879147)
  • Loading branch information
jreidinger committed May 27, 2014
2 parents 162aa32 + ee57aca commit 0f140dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions package/autoyast2.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed May 26 18:54:23 CEST 2014 - dvaleev@suse.com

- Fix broken disklabel fetch (bnc#879147)
- 3.1.29

-------------------------------------------------------------------
Wed May 21 14:45:15 CEST 2014 - schubi@suse.de

Expand Down
2 changes: 1 addition & 1 deletion package/autoyast2.spec
Expand Up @@ -17,7 +17,7 @@


Name: autoyast2
Version: 3.1.28
Version: 3.1.29
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
2 changes: 1 addition & 1 deletion src/include/autoinstall/autopart.rb
Expand Up @@ -128,8 +128,8 @@ def preprocess_partition_config(xmlflex)
xmlflex = deep_copy(xmlflex)
Builtins.y2debug("xml input: %1", xmlflex)
tm = Storage.GetTargetMap
dlabel = xmlflex["disklabel"]
partitioning = Builtins.maplist(xmlflex) do |d|
dlabel = d.fetch("disklabel", "msdos")
Builtins.foreach(["keep_partition_id", "keep_partition_num"]) do |key|
num = []
nlist2 = Builtins.splitstring(Ops.get_string(d, key, ""), ",")
Expand Down

0 comments on commit 0f140dd

Please sign in to comment.