Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-installation for openSUSE:Factory checked in at 2021-08-05 20:47:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old) and /work/SRC/openSUSE:Factory/.yast2-installation.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-installation" Thu Aug 5 20:47:47 2021 rev:475 rq:909891 version:4.4.15 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes 2021-07-04 22:10:17.537438171 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-installation.new.1899/yast2-installation.changes 2021-08-05 20:48:00.143938816 +0200 @@ -1,0 +2,6 @@ +Mon Aug 2 14:31:22 UTC 2021 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> + +- Activate devices before probing (bsc#1187220). +- 4.4.15 + +------------------------------------------------------------------- Old: ---- yast2-installation-4.4.14.tar.bz2 New: ---- yast2-installation-4.4.15.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-installation.spec ++++++ --- /var/tmp/diff_new_pack.fgyFkp/_old 2021-08-05 20:48:00.783938098 +0200 +++ /var/tmp/diff_new_pack.fgyFkp/_new 2021-08-05 20:48:00.787938093 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 4.4.14 +Version: 4.4.15 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only ++++++ yast2-installation-4.4.14.tar.bz2 -> yast2-installation-4.4.15.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.14/package/yast2-installation.changes new/yast2-installation-4.4.15/package/yast2-installation.changes --- old/yast2-installation-4.4.14/package/yast2-installation.changes 2021-06-30 15:47:53.000000000 +0200 +++ new/yast2-installation-4.4.15/package/yast2-installation.changes 2021-08-03 10:05:45.000000000 +0200 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Mon Aug 2 14:31:22 UTC 2021 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> + +- Activate devices before probing (bsc#1187220). +- 4.4.15 + +------------------------------------------------------------------- Wed Jun 16 14:10:33 UTC 2021 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> - Adapt code to Y2Users (part of jsc#PM-2620). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.14/package/yast2-installation.spec new/yast2-installation-4.4.15/package/yast2-installation.spec --- old/yast2-installation-4.4.14/package/yast2-installation.spec 2021-06-30 15:47:53.000000000 +0200 +++ new/yast2-installation-4.4.15/package/yast2-installation.spec 2021-08-03 10:05:45.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 4.4.14 +Version: 4.4.15 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.14/src/lib/installation/clients/inst_disks_activate.rb new/yast2-installation-4.4.15/src/lib/installation/clients/inst_disks_activate.rb --- old/yast2-installation-4.4.14/src/lib/installation/clients/inst_disks_activate.rb 2021-06-30 15:47:53.000000000 +0200 +++ new/yast2-installation-4.4.15/src/lib/installation/clients/inst_disks_activate.rb 2021-08-03 10:05:45.000000000 +0200 @@ -148,7 +148,11 @@ end end - Y2Storage::StorageManager.instance.probe if @disks_changed + if @disks_changed + storage = Y2Storage::StorageManager.instance + storage.activate + storage.probe + end Builtins.y2debug("ret=%1", @ret) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.14/test/inst_disks_activate_test.rb new/yast2-installation-4.4.15/test/inst_disks_activate_test.rb --- old/yast2-installation-4.4.14/test/inst_disks_activate_test.rb 2021-06-30 15:47:53.000000000 +0200 +++ new/yast2-installation-4.4.15/test/inst_disks_activate_test.rb 2021-08-03 10:05:45.000000000 +0200 @@ -21,6 +21,7 @@ allow(Yast::Linuxrc).to receive(:InstallInf).with("WithFCoE").and_return("0") allow(Yast::UI).to receive(:UserInput).and_return(:abort) + allow(Y2Storage::StorageManager.instance).to receive(:activate) allow(Y2Storage::StorageManager.instance).to receive(:probe) allow(Yast::SCR).to receive(:Read).with(path(".probe.disk"))