Hello community, here is the log from the commit of package yast2-kdump for openSUSE:Factory checked in at 2016-01-16 11:56:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-kdump (Old) and /work/SRC/openSUSE:Factory/.yast2-kdump.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-kdump" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-kdump/yast2-kdump.changes 2016-01-08 15:39:11.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-kdump.new/yast2-kdump.changes 2016-01-16 11:56:04.000000000 +0100 @@ -1,0 +2,6 @@ +Wed Jan 13 12:56:29 UTC 2016 - [email protected] + +- fix AutoYaST profile schema (bsc#954412) +- 3.1.36 + +------------------------------------------------------------------- Old: ---- yast2-kdump-3.1.35.tar.bz2 New: ---- yast2-kdump-3.1.36.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-kdump.spec ++++++ --- /var/tmp/diff_new_pack.O1LYUk/_old 2016-01-16 11:56:05.000000000 +0100 +++ /var/tmp/diff_new_pack.O1LYUk/_new 2016-01-16 11:56:05.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-kdump -Version: 3.1.35 +Version: 3.1.36 Release: 0 Summary: Configuration of kdump License: GPL-2.0 ++++++ yast2-kdump-3.1.35.tar.bz2 -> yast2-kdump-3.1.36.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-kdump-3.1.35/package/yast2-kdump.changes new/yast2-kdump-3.1.36/package/yast2-kdump.changes --- old/yast2-kdump-3.1.35/package/yast2-kdump.changes 2016-01-05 17:29:44.000000000 +0100 +++ new/yast2-kdump-3.1.36/package/yast2-kdump.changes 2016-01-14 12:54:51.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Jan 13 12:56:29 UTC 2016 - [email protected] + +- fix AutoYaST profile schema (bsc#954412) +- 3.1.36 + +------------------------------------------------------------------- Tue Jan 5 11:18:25 UTC 2016 - [email protected] - Alert the user when trying to configure a Xen DomU system, which diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-kdump-3.1.35/package/yast2-kdump.spec new/yast2-kdump-3.1.36/package/yast2-kdump.spec --- old/yast2-kdump-3.1.35/package/yast2-kdump.spec 2016-01-05 17:29:44.000000000 +0100 +++ new/yast2-kdump-3.1.36/package/yast2-kdump.spec 2016-01-14 12:54:51.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-kdump -Version: 3.1.35 +Version: 3.1.36 Release: 0 Summary: Configuration of kdump License: GPL-2.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-kdump-3.1.35/src/autoyast-rnc/kdump.rnc new/yast2-kdump-3.1.36/src/autoyast-rnc/kdump.rnc --- old/yast2-kdump-3.1.35/src/autoyast-rnc/kdump.rnc 2016-01-05 17:29:44.000000000 +0100 +++ new/yast2-kdump-3.1.36/src/autoyast-rnc/kdump.rnc 2016-01-14 12:54:51.000000000 +0100 @@ -21,8 +21,16 @@ kdump_general = element general { element KDUMP_KERNELVER { text }? & + element KDUMP_CPUS { text }? & element KDUMP_COMMANDLINE { text }? & element KDUMP_COMMANDLINE_APPEND { text }? & + element KDUMP_CONTINUE_ON_ERROR { text }? & + element KDUMP_REQUIRED_PROGRAMS { text }? & + element KDUMP_PRESCRIPT { text }? & + element KDUMP_POSTSCRIPT { text }? & + element KDUMPTOOL_FLAGS { text }? & + element KDUMP_NETCONFIG { text }? & + element KDUMP_NET_TIMEOUT { text }? & element KDUMP_COPY_KERNEL { text }? & element KEXEC_OPTIONS { text }? & element KDUMP_RUNLEVEL { text }? & @@ -38,5 +46,6 @@ element KDUMP_SMTP_USER { text }? & element KDUMP_SMTP_PASSWORD { text }? & element KDUMP_NOTIFICATION_TO { text }? & - element KDUMP_NOTIFICATION_CC { text }? + element KDUMP_NOTIFICATION_CC { text }? & + element KDUMP_HOST_KEY { text }? } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-kdump-3.1.35/src/modules/Kdump.rb new/yast2-kdump-3.1.36/src/modules/Kdump.rb --- old/yast2-kdump-3.1.35/src/modules/Kdump.rb 2016-01-05 17:29:44.000000000 +0100 +++ new/yast2-kdump-3.1.36/src/modules/Kdump.rb 2016-01-14 12:54:51.000000000 +0100 @@ -168,6 +168,7 @@ @DEFAULT_CONFIG = { "KDUMP_KERNELVER" => "", + "KDUMP_CPUS" => "", "KDUMP_COMMANDLINE" => "", "KDUMP_COMMANDLINE_APPEND" => "", "KEXEC_OPTIONS" => "", @@ -180,11 +181,19 @@ "KDUMP_VERBOSE" => "3", "KDUMP_DUMPLEVEL" => "31", "KDUMP_DUMPFORMAT" => "lzo", + "KDUMP_CONTINUE_ON_ERROR" => "true", + "KDUMP_REQUIRED_PROGRAMS" => "", + "KDUMP_PRESCRIPT" => "", + "KDUMP_POSTSCRIPT" => "", + "KDUMPTOOL_FLAGS" => "", + "KDUMP_NETCONFIG" => "auto", + "KDUMP_NET_TIMEOUT" => "30", "KDUMP_SMTP_SERVER" => "", "KDUMP_SMTP_USER" => "", "KDUMP_SMTP_PASSWORD" => "", "KDUMP_NOTIFICATION_TO" => "", - "KDUMP_NOTIFICATION_CC" => "" + "KDUMP_NOTIFICATION_CC" => "", + "KDUMP_HOST_KEY" => "" } # map <string, string > of kdump settings
