Hello community, here is the log from the commit of package yast2-kdump for openSUSE:Factory checked in at 2017-07-02 13:32:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-kdump (Old) and /work/SRC/openSUSE:Factory/.yast2-kdump.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-kdump" Sun Jul 2 13:32:39 2017 rev:84 rq:506968 version:3.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-kdump/yast2-kdump.changes 2017-06-24 08:33:20.013897308 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-kdump.new/yast2-kdump.changes 2017-07-02 13:32:42.601326573 +0200 @@ -1,0 +2,8 @@ +Mon Jun 26 15:27:06 CEST 2017 - [email protected] + +- Crash in AutoYaST clone: Fix for "dup" while getting + crash_xen_kernel_values and crash_kernel_values values. + (bnc#1045965) +- 3.3.0 + +------------------------------------------------------------------- Old: ---- yast2-kdump-3.2.6.tar.bz2 New: ---- yast2-kdump-3.3.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-kdump.spec ++++++ --- /var/tmp/diff_new_pack.KFaU7W/_old 2017-07-02 13:32:43.133251568 +0200 +++ /var/tmp/diff_new_pack.KFaU7W/_new 2017-07-02 13:32:43.137251004 +0200 @@ -17,7 +17,7 @@ Name: yast2-kdump -Version: 3.2.6 +Version: 3.3.0 Release: 0 Summary: Configuration of kdump License: GPL-2.0 ++++++ yast2-kdump-3.2.6.tar.bz2 -> yast2-kdump-3.3.0.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-kdump-3.2.6/package/yast2-kdump.changes new/yast2-kdump-3.3.0/package/yast2-kdump.changes --- old/yast2-kdump-3.2.6/package/yast2-kdump.changes 2017-06-22 15:29:27.273595575 +0200 +++ new/yast2-kdump-3.3.0/package/yast2-kdump.changes 2017-06-29 10:37:19.430757928 +0200 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Mon Jun 26 15:27:06 CEST 2017 - [email protected] + +- Crash in AutoYaST clone: Fix for "dup" while getting + crash_xen_kernel_values and crash_kernel_values values. + (bnc#1045965) +- 3.3.0 + +------------------------------------------------------------------- Wed Jun 21 09:10:56 UTC 2017 - [email protected] - Fixed regular expression that verifies alloc_mem parameter diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-kdump-3.2.6/package/yast2-kdump.spec new/yast2-kdump-3.3.0/package/yast2-kdump.spec --- old/yast2-kdump-3.2.6/package/yast2-kdump.spec 2017-06-22 15:29:27.273595575 +0200 +++ new/yast2-kdump-3.3.0/package/yast2-kdump.spec 2017-06-29 10:37:19.430757928 +0200 @@ -17,7 +17,7 @@ Name: yast2-kdump -Version: 3.2.6 +Version: 3.3.0 Release: 0 Summary: Configuration of kdump License: GPL-2.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-kdump-3.2.6/src/modules/Kdump.rb new/yast2-kdump-3.3.0/src/modules/Kdump.rb --- old/yast2-kdump-3.2.6/src/modules/Kdump.rb 2017-06-22 15:29:27.277595575 +0200 +++ new/yast2-kdump-3.3.0/src/modules/Kdump.rb 2017-06-29 10:37:19.454757928 +0200 @@ -1145,7 +1145,11 @@ # modification. # The old value (ensuring the Array format) will be returned. if @crashkernel_list_ranges - return Array(@crashkernel_param_values.dup) + if @crashkernel_param_values.is_a? Symbol + return Array(@crashkernel_param_values.to_s) + else + return Array(@crashkernel_param_values.dup) + end end result = [] @@ -1173,7 +1177,11 @@ # modification. # The old value (ensuring the Array format) will be returned. if @crashkernel_list_ranges - return Array(@crashkernel_xen_param_values.dup) + if @crashkernel_xen_param_values.is_a? Symbol + return Array(@crashkernel_xen_param_values.to_s) + else + return Array(@crashkernel_xen_param_values.dup) + end end result = []
