Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package sca-patterns-hae for
openSUSE:Factory checked in at 2021-11-05 22:58:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/sca-patterns-hae (Old)
and /work/SRC/openSUSE:Factory/.sca-patterns-hae.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sca-patterns-hae"
Fri Nov 5 22:58:29 2021 rev:3 rq:929455 version:1.5.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/sca-patterns-hae/sca-patterns-hae.changes
2020-12-16 11:01:42.823642165 +0100
+++
/work/SRC/openSUSE:Factory/.sca-patterns-hae.new.1890/sca-patterns-hae.changes
2021-11-05 22:58:41.956284648 +0100
@@ -1,0 +2,6 @@
+Thu Nov 4 18:53:25 UTC 2021 - Jason Record <[email protected]>
+
+- Updates to version 1.5.0
+ + Converted all python patterns to python3 (bsc#1191005)
+
+-------------------------------------------------------------------
Old:
----
sca-patterns-hae-1.3.1.tar.gz
New:
----
sca-patterns-hae-1.5.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ sca-patterns-hae.spec ++++++
--- /var/tmp/diff_new_pack.ub1o7I/_old 2021-11-05 22:58:42.428284938 +0100
+++ /var/tmp/diff_new_pack.ub1o7I/_new 2021-11-05 22:58:42.428284938 +0100
@@ -1,7 +1,7 @@
#
# spec file for package sca-patterns-hae
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
%define category HAE
Name: sca-patterns-hae
-Version: 1.3.1
+Version: 1.5.0
Release: 0
Summary: Supportconfig Analysis Patterns for HAE
License: GPL-2.0-only
@@ -33,7 +33,7 @@
URL: https://github.com/g23guy/sca-patterns-hae
Source: %{name}-%{version}.tar.gz
BuildRequires: fdupes
-Requires: sca-patterns-base
+Requires: sca-patterns-base >= 1.5.0
BuildArch: noarch
%description
++++++ sca-patterns-hae-1.3.1.tar.gz -> sca-patterns-hae-1.5.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sca-patterns-hae-1.3.1/patterns/HAE/bindnetaddr-7015225.py
new/sca-patterns-hae-1.5.0/patterns/HAE/bindnetaddr-7015225.py
--- old/sca-patterns-hae-1.3.1/patterns/HAE/bindnetaddr-7015225.py
2017-07-07 18:13:42.789792885 +0200
+++ new/sca-patterns-hae-1.5.0/patterns/HAE/bindnetaddr-7015225.py
2021-11-04 20:17:46.625271234 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# Title: Check for unique bind addresses
# Description: Troubleshooting HAE Cluster Membership
@@ -65,10 +65,10 @@
# The address is not a duplicate, add it to the list of
bind net addresses to check
BINDADDRS[ADDR] = True
if( len(DUP_BINDADDRS) > 0 ):
- Core.updateStatus(Core.CRIT, "Detected Duplicate Corosync Bind
Addresses: " + " ".join(DUP_BINDADDRS.keys()))
+ Core.updateStatus(Core.CRIT, "Detected Duplicate Corosync Bind
Addresses: " + " ".join(list(DUP_BINDADDRS.keys())))
else:
Core.updateStatus(Core.IGNORE, "All Corosync Bind Addresses are
Unique")
-except Exception, error:
+except Exception as error:
Core.updateStatus(Core.ERROR, "Corosync configuration error: " +
str(error))
Core.printPatternResults()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sca-patterns-hae-1.3.1/patterns/HAE/corosync-7015215.py
new/sca-patterns-hae-1.5.0/patterns/HAE/corosync-7015215.py
--- old/sca-patterns-hae-1.3.1/patterns/HAE/corosync-7015215.py 2017-07-07
18:13:42.801792873 +0200
+++ new/sca-patterns-hae-1.5.0/patterns/HAE/corosync-7015215.py 2021-11-04
20:17:46.625271234 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# Title: Invalid Corosync Consensus
# Description: Odd cluster membership changes in HAE cluster
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sca-patterns-hae-1.3.1/patterns/HAE/mcastport-7015225.py
new/sca-patterns-hae-1.5.0/patterns/HAE/mcastport-7015225.py
--- old/sca-patterns-hae-1.3.1/patterns/HAE/mcastport-7015225.py
2017-07-07 18:13:42.833792841 +0200
+++ new/sca-patterns-hae-1.5.0/patterns/HAE/mcastport-7015225.py
2021-11-04 20:17:46.625271234 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# Title: Check for unique mcastports
# Description: Troubleshooting HAE Cluster Membership
@@ -65,10 +65,10 @@
# The address is not a duplicate, add it to the list of
bind net addresses to check
MCASTPORT[ADDR] = True
if( len(DUP_MCASTPORT) > 0 ):
- Core.updateStatus(Core.REC, "Detected Duplicate Corosync
Multicast Port Addresses: " + " ".join(DUP_MCASTPORT.keys()))
+ Core.updateStatus(Core.REC, "Detected Duplicate Corosync
Multicast Port Addresses: " + " ".join(list(DUP_MCASTPORT.keys())))
else:
Core.updateStatus(Core.IGNORE, "All Corosync Multicast Port
Addresses are Unique")
-except Exception, error:
+except Exception as error:
Core.updateStatus(Core.ERROR, "Corosync configuration error: " +
str(error))
Core.printPatternResults()