Hello community, here is the log from the commit of package yast2-s390 for openSUSE:Factory checked in at 2017-12-18 08:57:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-s390 (Old) and /work/SRC/openSUSE:Factory/.yast2-s390.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-s390" Mon Dec 18 08:57:59 2017 rev:3 rq:557199 version:4.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-s390/yast2-s390.changes 2017-11-11 14:20:51.252455392 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-s390.new/yast2-s390.changes 2017-12-18 08:58:05.590896654 +0100 @@ -1,0 +2,7 @@ +Tue Dec 12 12:00:24 UTC 2017 - [email protected] + +- Clients used during upgrade now rely on yast-storage-ng + instead of the old yast2-storage (bsc#1066538). +- 4.0.1 + +------------------------------------------------------------------- Old: ---- yast2-s390-4.0.0.tar.bz2 New: ---- yast2-s390-4.0.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-s390.spec ++++++ --- /var/tmp/diff_new_pack.fUiuwR/_old 2017-12-18 08:58:09.566704725 +0100 +++ /var/tmp/diff_new_pack.fUiuwR/_new 2017-12-18 08:58:09.570704532 +0100 @@ -17,7 +17,7 @@ Name: yast2-s390 -Version: 4.0.0 +Version: 4.0.1 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-s390-4.0.0.tar.bz2 -> yast2-s390-4.0.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-s390-4.0.0/package/yast2-s390.changes new/yast2-s390-4.0.1/package/yast2-s390.changes --- old/yast2-s390-4.0.0/package/yast2-s390.changes 2017-11-10 02:10:19.403968169 +0100 +++ new/yast2-s390-4.0.1/package/yast2-s390.changes 2017-12-14 10:55:47.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Dec 12 12:00:24 UTC 2017 - [email protected] + +- Clients used during upgrade now rely on yast-storage-ng + instead of the old yast2-storage (bsc#1066538). +- 4.0.1 + +------------------------------------------------------------------- Wed Nov 08 22:44:33 CET 2017 - [email protected] - fixed call of dasdview (bsc#1067265) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-s390-4.0.0/package/yast2-s390.spec new/yast2-s390-4.0.1/package/yast2-s390.spec --- old/yast2-s390-4.0.0/package/yast2-s390.spec 2017-11-10 02:10:19.403968169 +0100 +++ new/yast2-s390-4.0.1/package/yast2-s390.spec 2017-12-14 10:55:47.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-s390 -Version: 4.0.0 +Version: 4.0.1 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-s390-4.0.0/src/clients/dasd_proposal.rb new/yast2-s390-4.0.1/src/clients/dasd_proposal.rb --- old/yast2-s390-4.0.0/src/clients/dasd_proposal.rb 2017-11-10 02:10:19.403968169 +0100 +++ new/yast2-s390-4.0.1/src/clients/dasd_proposal.rb 2017-12-14 10:55:47.000000000 +0100 @@ -25,6 +25,10 @@ # Authors: Jiri Srain <[email protected]> # # Proposal function dispatcher for dasd configuration. + +require "yast" +require "y2storage" + module Yast class DasdProposalClient < Client def main @@ -32,7 +36,6 @@ Yast.import "DASDController" Yast.import "Wizard" - Yast.import "Storage" @func = Convert.to_string(WFM.Args(0)) @param = Convert.to_map(WFM.Args(1)) @@ -54,9 +57,14 @@ # Run an interactive workflow elsif @func == "AskUser" Wizard.CreateDialog - Storage.ActivateHld(false) + storage = Y2Storage::StorageManager.instance + # Deactivate high level devices (RAID, multipath, LVM, encryption...) + storage.deactivate @sequence = WFM.CallFunction("inst_dasd", []) - Storage.ReReadTargetMap + # NOTE: the pre-storage-ng code called ReReadTargetMap here, + # without any explicit reactivation of the high level devices. + # So far, we do the same (calling .probe without calling .activate) + storage.probe Wizard.CloseDialog # Fill return map diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-s390-4.0.0/src/clients/zfcp_proposal.rb new/yast2-s390-4.0.1/src/clients/zfcp_proposal.rb --- old/yast2-s390-4.0.0/src/clients/zfcp_proposal.rb 2017-11-10 02:10:19.403968169 +0100 +++ new/yast2-s390-4.0.1/src/clients/zfcp_proposal.rb 2017-12-14 10:55:47.000000000 +0100 @@ -25,6 +25,10 @@ # Authors: Jiri Srain <[email protected]> # # Proposal function dispatcher for zfcp configuration. + +require "yast" +require "y2storage" + module Yast class ZfcpProposalClient < Client def main @@ -32,7 +36,6 @@ Yast.import "ZFCPController" Yast.import "Wizard" - Yast.import "Storage" @func = Convert.to_string(WFM.Args(0)) @param = Convert.to_map(WFM.Args(1)) @@ -54,9 +57,14 @@ # Run an interactive workflow elsif @func == "AskUser" Wizard.CreateDialog - Storage.ActivateHld(false) + storage = Y2Storage::StorageManager.instance + # Deactivate high level devices (RAID, multipath, LVM, encryption...) + storage.deactivate @sequence = WFM.CallFunction("inst_zfcp", []) - Storage.ReReadTargetMap + # NOTE: the pre-storage-ng code called ReReadTargetMap here, + # without any explicit reactivation of the high level devices. + # So far, we do the same (calling .probe without calling .activate) + storage.probe Wizard.CloseDialog # Fill return map
