Hello community,

here is the log from the commit of package cluster-glue for openSUSE:Factory 
checked in at 2013-12-11 16:42:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cluster-glue (Old)
 and      /work/SRC/openSUSE:Factory/.cluster-glue.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cluster-glue"

Changes:
--------
--- /work/SRC/openSUSE:Factory/cluster-glue/cluster-glue.changes        
2013-11-07 17:37:00.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.cluster-glue.new/cluster-glue.changes   
2013-12-11 16:42:13.000000000 +0100
@@ -1,0 +2,10 @@
+Tue Dec 10 17:27:46 UTC 2013 - [email protected]
+
+- external/vcenter: Disable SSL hostname verification (bnc#851990) 
+
+-------------------------------------------------------------------
+Mon Dec  9 20:50:30 UTC 2013 - [email protected]
+
+- hb_report: Add support for xz compression (bnc#854060)
+
+-------------------------------------------------------------------

New:
----
  bnc851990_cluster-glue_external_vcenter_disable_hostname_verification.patch
  bnc854060_hb_report-add-xz-support.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ cluster-glue.spec ++++++
--- /var/tmp/diff_new_pack.6u85gR/_old  2013-12-11 16:42:14.000000000 +0100
+++ /var/tmp/diff_new_pack.6u85gR/_new  2013-12-11 16:42:14.000000000 +0100
@@ -48,6 +48,8 @@
 Patch2:         bnc662816_cluster-glue_hb_report_abspath.patch
 Patch4:         cluster-glue_droplrm.patch
 Patch5:         ipmilan-ipmiif.patch
+Patch6:         
bnc851990_cluster-glue_external_vcenter_disable_hostname_verification.patch
+Patch7:         bnc854060_hb_report-add-xz-support.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  OpenIPMI-devel
 BuildRequires:  asciidoc
@@ -144,6 +146,8 @@
 %patch2 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
+%patch7 -p1
 ###########################################################
 
 %build

++++++ 
bnc851990_cluster-glue_external_vcenter_disable_hostname_verification.patch 
++++++
# HG changeset patch
# User Kristoffer Grönlund <[email protected]>
# Date 1385970687 -3600
#      Mon Dec 02 08:51:27 2013 +0100
# Node ID bc660db57b1eb82a6bafbd15de69f92104f3e618
# Parent  8ee647b07cfaee0a59024248e1b3a2a2c6c4d175
Low: stonith: external/vcenter: Disable SSL hostname verification by default 
(bnc#851990)

Add parameter to the agent to enable or disable SSL hostname verification, and
set the default to 0.

diff --git a/lib/plugins/stonith/external/vcenter 
b/lib/plugins/stonith/external/vcenter
--- a/lib/plugins/stonith/external/vcenter
+++ b/lib/plugins/stonith/external/vcenter
@@ -106,6 +106,14 @@ Enable/disable a PowerOnVM on reset when
 Allowed values: 0, 1
 </longdesc>
 </parameter>
+<parameter name="PERL_LWP_SSL_VERIFY_HOSTNAME">
+<content type="string" default="0"/>
+<shortdesc lang="en">Disable SSL hostname verification</shortdesc>
+<longdesc lang="en">
+Disable SSL hostname verification by default. To enable hostname
+verification, set this option to 1.
+</longdesc>
+</parameter>
 </parameters>} . "\n";
        }
        else { dielog("Invalid command specified: $command\n"); }
++++++ bnc854060_hb_report-add-xz-support.patch ++++++
# HG changeset patch
# User Kristoffer Grönlund <[email protected]>
# Date 1386521692 -3600
#      Sun Dec 08 17:54:52 2013 +0100
# Node ID e1707c266d9239a182e389172fab2f42fef2365b
# Parent  bc660db57b1eb82a6bafbd15de69f92104f3e618
Medium: hb_report: Add support for xz compression (bnc#854060)

On some systems, log files are compressed with xz compression.
Assumes that xz is installed if logs are compressed with xz.

diff --git a/hb_report/hb_report.in b/hb_report/hb_report.in
--- a/hb_report/hb_report.in
+++ b/hb_report/hb_report.in
@@ -315,7 +315,9 @@ findlog() {
 #
 
 find_decompressor() {
-       if echo $1 | grep -qs 'bz2$'; then
+       if echo $1 | grep -qs 'xz$'; then
+               echo "xz -dc"
+       elif echo $1 | grep -qs 'bz2$'; then
                echo "bzip2 -dc"
        elif echo $1 | grep -qs 'gz$'; then
                echo "gzip -dc"
@@ -1018,8 +1020,10 @@ edittemplate() {
        fi
 }
 pickcompress() {
-       if COMPRESS_PROG=`pickfirst bzip2 gzip`; then
-               if [ "$COMPRESS_PROG" = bzip2 ]; then
+       if COMPRESS_PROG=`pickfirst bzip2 gzip xz`; then
+               if [ "$COMPRESS_PROG" = xz ]; then
+                       COMPRESS_EXT=.xz
+               elif [ "$COMPRESS_PROG" = bzip2 ]; then
                        COMPRESS_EXT=.bz2
                else
                        COMPRESS_EXT=.gz
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to