Hello community, here is the log from the commit of package autoyast2 for openSUSE:Factory checked in at 2016-02-29 09:11:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old) and /work/SRC/openSUSE:Factory/.autoyast2.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "autoyast2" Changes: -------- --- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes 2016-02-23 16:52:44.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2016-02-29 09:11:12.000000000 +0100 @@ -1,0 +2,10 @@ +Tue Feb 23 17:01:09 CET 2016 - schubi@suse.de + +- As network configuration will be moved to first installation + stage and wickedd should not be restarted in the second stage, + all wickedd and network services will not be restarted at all + by AutoYaST. + (bnc#944349, bnc#955260) +- 3.1.116 + +------------------------------------------------------------------- Old: ---- autoyast2-3.1.115.tar.bz2 New: ---- autoyast2-3.1.116.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ autoyast2.spec ++++++ --- /var/tmp/diff_new_pack.Q3haqO/_old 2016-02-29 09:11:13.000000000 +0100 +++ /var/tmp/diff_new_pack.Q3haqO/_new 2016-02-29 09:11:13.000000000 +0100 @@ -18,7 +18,7 @@ Name: autoyast2 -Version: 3.1.115 +Version: 3.1.116 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ autoyast2-3.1.115.tar.bz2 -> autoyast2-3.1.116.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.115/package/autoyast2.changes new/autoyast2-3.1.116/package/autoyast2.changes --- old/autoyast2-3.1.115/package/autoyast2.changes 2016-02-18 09:19:45.000000000 +0100 +++ new/autoyast2-3.1.116/package/autoyast2.changes 2016-02-24 10:04:14.000000000 +0100 @@ -1,4 +1,14 @@ ------------------------------------------------------------------- +Tue Feb 23 17:01:09 CET 2016 - schubi@suse.de + +- As network configuration will be moved to first installation + stage and wickedd should not be restarted in the second stage, + all wickedd and network services will not be restarted at all + by AutoYaST. + (bnc#944349, bnc#955260) +- 3.1.116 + +------------------------------------------------------------------- Wed Feb 17 10:01:02 UTC 2016 - mvidner@suse.com - Moved the body of AutoinstallIoInclude#Get to yast2-update diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.115/package/autoyast2.spec new/autoyast2-3.1.116/package/autoyast2.spec --- old/autoyast2-3.1.115/package/autoyast2.spec 2016-02-18 09:19:45.000000000 +0100 +++ new/autoyast2-3.1.116/package/autoyast2.spec 2016-02-24 10:04:14.000000000 +0100 @@ -18,7 +18,7 @@ Name: autoyast2 -Version: 3.1.115 +Version: 3.1.116 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.115/src/clients/inst_autoconfigure.rb new/autoyast2-3.1.116/src/clients/inst_autoconfigure.rb --- old/autoyast2-3.1.115/src/clients/inst_autoconfigure.rb 2016-02-18 09:19:45.000000000 +0100 +++ new/autoyast2-3.1.116/src/clients/inst_autoconfigure.rb 2016-02-24 10:04:14.000000000 +0100 @@ -293,13 +293,21 @@ ["general", "mode", "max_systemd_wait"], 30 ) + @ser_ignore = [ "YaST2-Second-Stage.service", "autoyast-initscripts.service", # Do not restart dbus. Otherwise some services will hang. # bnc#937900 - "dbus.service" + "dbus.service", + # Do not restart wickedd* services + # bnc#944349 + "^wickedd", + # Do not restart NetworkManager* services + # bnc#955260 + "^NetworkManager" ] + if final_restart_services logStep(_("Restarting all running services")) @cmd = "systemctl --type=service list-units | grep \" running \"" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.115/test/AutoInstallRules_test.rb new/autoyast2-3.1.116/test/AutoInstallRules_test.rb --- old/autoyast2-3.1.115/test/AutoInstallRules_test.rb 2016-02-18 09:19:45.000000000 +0100 +++ new/autoyast2-3.1.116/test/AutoInstallRules_test.rb 2016-02-24 10:04:14.000000000 +0100 @@ -71,6 +71,10 @@ end describe "#ProbeRules" do + before(:each) do + subject.reset + end + it "reads installed product properties from content file" do expect(Yast::SCR).to receive(:Read).with(Yast::Path.new(".probe.bios")).and_return([]) expect(Yast::SCR).to receive(:Read).with(Yast::Path.new(".probe.memory")).and_return([]) @@ -98,7 +102,6 @@ context "when .content.DISTRO is not found" do before(:each) do - subject.reset allow(Yast::SCR).to receive(:Read).with(any_args) allow(Yast::Arch).to receive(:architecture).and_return("x86_64") end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/autoyast2-3.1.115/test/AutoinstSoftware_test.rb new/autoyast2-3.1.116/test/AutoinstSoftware_test.rb --- old/autoyast2-3.1.115/test/AutoinstSoftware_test.rb 2016-02-18 09:19:45.000000000 +0100 +++ new/autoyast2-3.1.116/test/AutoinstSoftware_test.rb 2016-02-24 10:04:14.000000000 +0100 @@ -3,6 +3,7 @@ require_relative "test_helper" Yast.import "AutoinstSoftware" +Yast.import "AutoinstData" Yast.import "Profile" describe Yast::AutoinstSoftware do
participants (1)
-
root@hilbert.suse.de