Hello community,
here is the log from the commit of package sca-patterns-sle11 for
openSUSE:Factory checked in at 2018-01-09 14:55:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/sca-patterns-sle11 (Old)
and /work/SRC/openSUSE:Factory/.sca-patterns-sle11.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sca-patterns-sle11"
Tue Jan 9 14:55:36 2018 rev:2 rq:562593 version:1.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/sca-patterns-sle11/sca-patterns-sle11.changes
2018-01-06 18:53:37.434798648 +0100
+++
/work/SRC/openSUSE:Factory/.sca-patterns-sle11.new/sca-patterns-sle11.changes
2018-01-09 14:55:40.204835393 +0100
@@ -1,0 +2,6 @@
+Mon Jan 8 17:54:34 UTC 2018 - [email protected]
+
+- New Security Announcement Pattern
+ sle11sp3/kvm_SUSE-SU-2018_0039-1_11.3.ltss.py
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ sca-patterns-sle11.spec ++++++
--- /var/tmp/diff_new_pack.r9UZlN/_old 2018-01-09 14:55:40.792807831 +0100
+++ /var/tmp/diff_new_pack.r9UZlN/_new 2018-01-09 14:55:40.796807643 +0100
@@ -1,7 +1,7 @@
#
# spec file for package sca-patterns-sle11
#
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,6 +12,10 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
+
%define sca_common sca
%define patdirbase /usr/lib/%{sca_common}
%define patdir %{patdirbase}/patterns
@@ -25,12 +29,12 @@
Release: 0
Summary: Supportconfig Analysis Patterns for SLE11
License: GPL-2.0
-URL: https://github.com/g23guy/sca-patterns-sle11
Group: System/Monitoring
+Url: https://github.com/g23guy/sca-patterns-sle11
Source: %{name}-%{version}.tar.gz
BuildRequires: fdupes
Requires: sca-patterns-base
-Buildarch: noarch
+BuildArch: noarch
%description
Supportconfig Analysis (SCA) appliance patterns to identify known
++++++ sca-patterns-sle11-1.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sca-patterns-sle11-1.3/patterns/SLE/sle11sp3/kvm_SUSE-SU-2018_0039-1_11.3.ltss.py
new/sca-patterns-sle11-1.3/patterns/SLE/sle11sp3/kvm_SUSE-SU-2018_0039-1_11.3.ltss.py
---
old/sca-patterns-sle11-1.3/patterns/SLE/sle11sp3/kvm_SUSE-SU-2018_0039-1_11.3.ltss.py
1970-01-01 01:00:00.000000000 +0100
+++
new/sca-patterns-sle11-1.3/patterns/SLE/sle11sp3/kvm_SUSE-SU-2018_0039-1_11.3.ltss.py
2018-01-08 18:29:20.559333503 +0100
@@ -0,0 +1,62 @@
+#!/usr/bin/python
+#
+# Title: Important Security Announcement for kvm SUSE-SU-2018:0039-1
+# Description: Security fixes for SUSE Linux Enterprise 11 SP3 LTSS
+# Source: Security Announcement Parser v1.3.7
+# Modified: 2018 Jan 08
+#
+##############################################################################
+# Copyright (C) 2018 SUSE LLC
+##############################################################################
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses/>.
+#
+# Authors/Contributors:
+# Jason Record ([email protected])
+#
+##############################################################################
+
+import os
+import Core
+import SUSE
+
+META_CLASS = "Security"
+META_CATEGORY = "SLE"
+META_COMPONENT = "kvm"
+PATTERN_ID = os.path.basename(__file__)
+PRIMARY_LINK = "META_LINK_Security"
+OVERALL = Core.TEMP
+OVERALL_INFO = "NOT SET"
+OTHER_LINKS =
"META_LINK_Security=https://lists.opensuse.org/opensuse-security-announce/2018-01/msg00022.html"
+Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK,
OVERALL, OVERALL_INFO, OTHER_LINKS)
+
+LTSS = True
+NAME = 'kvm'
+MAIN = ''
+SEVERITY = 'Important'
+TAG = 'SUSE-SU-2018:0039-1'
+PACKAGES = {}
+SERVER = SUSE.getHostInfo()
+
+if ( SERVER['DistroVersion'] == 11):
+ if ( SERVER['DistroPatchLevel'] == 3 ):
+ PACKAGES = {
+ 'kvm': '1.4.2-53.14.1',
+ }
+ SUSE.securityAnnouncementPackageCheck(NAME, MAIN, LTSS,
SEVERITY, TAG, PACKAGES)
+ else:
+ Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security
Announcement: Outside the service pack scope")
+else:
+ Core.updateStatus(Core.ERROR, "ERROR: " + NAME + " Security
Announcement: Outside the distribution scope")
+Core.printPatternResults()
+