[yast-commit] [ci_new_pac] JFYI yast2-s390 -> sle12
Script 'mail_helper' called by ro Hello packager, This is just FYI. Your package was checked in in distribution "sle12" by autobuild-member: ro. Here comes the log... ---------------------------%<------------------------------ Hi, here is the log from ci_new_pac /mounts/work_src_done/SLE12/yast2-s390 -> sle12 ## BNC# 869123 : "DASD Module creates new initrd and executes zipl." (RESOLVED/FIXED) Changes: -------- --- /work/SRC/SUSE:SLE-12:GA/yast2-s390/yast2-s390.changes 2014-03-03 13:00:06.000000000 +0100 +++ /mounts/work_src_done/SLE12/yast2-s390/yast2-s390.changes 2014-03-19 17:26:12.000000000 +0100 @@ -1,0 +2,6 @@ +Wed Mar 19 14:30:54 CET 2014 - aschnell@suse.de + +- do not execute zipl after DASD or zFCP configuration (bnc#869123) +- 3.1.9 + +------------------------------------------------------------------- calling whatdependson for sle12-i586 Packages directly triggered for rebuild: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/SUSE:SLE-12:GA/yast2-s390 (Old) and /mounts/work_src_done/SLE12/yast2-s390 (BS:build ID:34605 MAIL:yast-commit@opensuse.org) (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2-s390", Maintainer is "yast-commit@opensuse.org" Old: ---- yast2-s390-3.1.8.tar.bz2 New: ---- yast2-s390-3.1.9.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-s390.spec ++++++ --- /var/tmp/diff_new_pack.v2L0Ml/_old 2014-03-21 15:22:51.000000000 +0100 +++ /var/tmp/diff_new_pack.v2L0Ml/_new 2014-03-21 15:22:51.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-s390 -Version: 3.1.8 +Version: 3.1.9 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -35,6 +35,7 @@ Requires: yast2-ruby-bindings >= 3.1.7 Requires: s390-tools Summary: YaST2 - S/390 Specific Features Configuration +Url: http://github.com/yast/yast-s390/ %description This package contains the YaST component for configuration of ++++++ yast2-s390-3.1.8.tar.bz2 -> yast2-s390-3.1.9.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-s390-3.1.8/package/yast2-s390.changes new/yast2-s390-3.1.9/package/yast2-s390.changes --- old/yast2-s390-3.1.8/package/yast2-s390.changes 2014-02-28 16:15:18.000000000 +0100 +++ new/yast2-s390-3.1.9/package/yast2-s390.changes 2014-03-19 17:24:19.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Mar 19 14:30:54 CET 2014 - aschnell@suse.de + +- do not execute zipl after DASD or zFCP configuration (bnc#869123) +- 3.1.9 + +------------------------------------------------------------------- Fri Feb 28 14:51:50 UTC 2014 - thardeck@suse.com - fixed iucvterminal-server behavior on inital start diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-s390-3.1.8/package/yast2-s390.spec new/yast2-s390-3.1.9/package/yast2-s390.spec --- old/yast2-s390-3.1.8/package/yast2-s390.spec 2014-02-28 16:15:18.000000000 +0100 +++ new/yast2-s390-3.1.9/package/yast2-s390.spec 2014-03-19 17:24:19.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-s390 -Version: 3.1.8 +Version: 3.1.9 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -35,6 +35,7 @@ Requires: yast2-ruby-bindings >= 3.1.7 Requires: s390-tools Summary: YaST2 - S/390 Specific Features Configuration +Url: http://github.com/yast/yast-s390/ %description This package contains the YaST component for configuration of diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-s390-3.1.8/src/modules/DASDController.rb new/yast2-s390-3.1.9/src/modules/DASDController.rb --- old/yast2-s390-3.1.8/src/modules/DASDController.rb 2014-02-28 16:15:18.000000000 +0100 +++ new/yast2-s390-3.1.9/src/modules/DASDController.rb 2014-03-19 17:24:19.000000000 +0100 @@ -56,7 +56,7 @@ @diag = {} - # Have DASDs been configured so that mkinitrd and zipl need to be run? + # Have DASDs been configured so that mkinitrd needs to be run? @disk_configured = false @@ -160,7 +160,7 @@ if unformatted_devices.size == 1 message = Builtins.sformat(_("Device %1 is not formatted. Format device now?"), unformatted_devices[0]) else - message = BUiltins.sformat(_("There are %1 unformatted devices. Format them now?"), unformatted_devices.size) + message = Builtins.sformat(_("There are %1 unformatted devices. Format them now?"), unformatted_devices.size) end if Popup.ContinueCancel( message ) unformatted_devices.each do | device | @@ -185,9 +185,9 @@ if !Mode.installation if @disk_configured # popup label - UI.OpenDialog(Label(_("Running mkinitrd and zipl."))) + UI.OpenDialog(Label(_("Running mkinitrd."))) - command = "/sbin/mkinitrd && /sbin/zipl" + command = "/sbin/mkinitrd" Builtins.y2milestone("Running command %1", command) ret = SCR.Execute(path(".target.bash"), command) Builtins.y2milestone("Exit code: %1", ret) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-s390-3.1.8/src/modules/ZFCPController.rb new/yast2-s390-3.1.9/src/modules/ZFCPController.rb --- old/yast2-s390-3.1.8/src/modules/ZFCPController.rb 2014-02-28 16:15:18.000000000 +0100 +++ new/yast2-s390-3.1.9/src/modules/ZFCPController.rb 2014-03-19 17:24:19.000000000 +0100 @@ -158,9 +158,9 @@ if !Mode.installation if @disk_configured # popup label - UI.OpenDialog(Label(_("Running mkinitrd and zipl."))) + UI.OpenDialog(Label(_("Running mkinitrd."))) - command = "/sbin/mkinitrd && /sbin/zipl" + command = "/sbin/mkinitrd" Builtins.y2milestone("Running command %1", command) ret = SCR.Execute(path(".target.bash"), command) Builtins.y2milestone("Exit code: %1", ret) continue with "q"... Checked in at Fri Mar 21 15:22:59 CET 2014 by ro Remember to have fun... -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
ro