Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package sca-patterns-sle15 for 
openSUSE:Factory checked in at 2024-01-30 18:25:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/sca-patterns-sle15 (Old)
 and      /work/SRC/openSUSE:Factory/.sca-patterns-sle15.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "sca-patterns-sle15"

Tue Jan 30 18:25:28 2024 rev:26 rq:1142630 version:1.5.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/sca-patterns-sle15/sca-patterns-sle15.changes    
2024-01-12 23:47:01.666113729 +0100
+++ 
/work/SRC/openSUSE:Factory/.sca-patterns-sle15.new.1815/sca-patterns-sle15.changes
  2024-01-30 18:25:44.930664537 +0100
@@ -1,0 +2,7 @@
+Mon Jan 29 19:02:26 UTC 2024 - jason.rec...@suse.com
+
+- Changes to version 1.5.7
+  + rsyslog-000019710.py not applicable to SLE Micro (bsc#1219320)
+  + coredumpctl-000018634.py has invalid output element (bsc#1219319)
+
+-------------------------------------------------------------------

Old:
----
  sca-patterns-sle15-1.5.6.tar.gz

New:
----
  sca-patterns-sle15-1.5.7.tar.gz

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

Other differences:
------------------
++++++ sca-patterns-sle15.spec ++++++
--- /var/tmp/diff_new_pack.UxXllg/_old  2024-01-30 18:25:45.518685750 +0100
+++ /var/tmp/diff_new_pack.UxXllg/_new  2024-01-30 18:25:45.518685750 +0100
@@ -25,7 +25,7 @@
 %define category SLE
 
 Name:           sca-patterns-sle15
-Version:        1.5.6
+Version:        1.5.7
 Release:        0
 Summary:        Supportconfig Analysis Patterns for SLE15
 License:        GPL-2.0-only

++++++ sca-patterns-sle15-1.5.6.tar.gz -> sca-patterns-sle15-1.5.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sca-patterns-sle15-1.5.6/patterns/SLE/sle15all/coredumpctl-000018634.py 
new/sca-patterns-sle15-1.5.7/patterns/SLE/sle15all/coredumpctl-000018634.py
--- old/sca-patterns-sle15-1.5.6/patterns/SLE/sle15all/coredumpctl-000018634.py 
2021-11-04 23:04:59.873229653 +0100
+++ new/sca-patterns-sle15-1.5.7/patterns/SLE/sle15all/coredumpctl-000018634.py 
2024-01-29 19:35:34.368616837 +0100
@@ -4,10 +4,10 @@
 # Description: How to obtain systemd service core dumps
 # Source:      Basic Python Pattern Template v0.3.4
 # Options:     SLE,Application,Core,coredumpctl,000018634,0,1,0,0
-# Modified:    2021 Sep 07
+# Modified:    2024 Jan 29
 #
 ##############################################################################
-# Copyright (C) 2021 SUSE LLC
+# Copyright (C) 2021-2024 SUSE LLC
 ##############################################################################
 #
 # This program is free software; you can redistribute it and/or modify
@@ -38,7 +38,7 @@
 PRIMARY_LINK = "META_LINK_TID"
 OVERALL = Core.TEMP
 OVERALL_INFO = "NOT SET"
-OTHER_LINKS = 
"META_LINK_TID=https://www.suse.com/support/kb/doc/?id=000018634|Video=https://youtu.be/CNsuBBh3M10";
+OTHER_LINKS = 
"META_LINK_TID=https://www.suse.com/support/kb/doc/?id=000018634|META_LINK_Video=https://youtu.be/CNsuBBh3M10";
 Core.init(META_CLASS, META_CATEGORY, META_COMPONENT, PATTERN_ID, PRIMARY_LINK, 
OVERALL, OVERALL_INFO, OTHER_LINKS)
 
 CORE_LIST = {}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sca-patterns-sle15-1.5.6/patterns/SLE/sle15all/rsyslog-000019710.py 
new/sca-patterns-sle15-1.5.7/patterns/SLE/sle15all/rsyslog-000019710.py
--- old/sca-patterns-sle15-1.5.6/patterns/SLE/sle15all/rsyslog-000019710.py     
2021-11-04 23:04:59.881229457 +0100
+++ new/sca-patterns-sle15-1.5.7/patterns/SLE/sle15all/rsyslog-000019710.py     
2024-01-29 19:54:56.573635860 +0100
@@ -2,10 +2,10 @@
 
 # Title:       No System Log Service
 # Description: no syslog service after upgrade from SLES 11 SP4 to SLES 15
-# Modified:    2021 Mar 27
+# Modified:    2024 Jan 29
 #
 ##############################################################################
-# Copyright (C) 2021, SUSE LLC
+# Copyright (C) 2021-2024, SUSE LLC
 ##############################################################################
 #
 # This program is free software; you can redistribute it and/or modify
@@ -69,7 +69,10 @@
 ##############################################################################
 PACKAGE_SYSLOG = 'rsyslog'
 
-if( SUSE.packageInstalled(PACKAGE_SYSLOG) ):
+SERVER = SUSE.getHostInfo()
+if( "enterprise micro" in SERVER['Distro'].lower() ):
+       Core.updateStatus(Core.ERROR, "Not appliable to SLE Micro")
+elif( SUSE.packageInstalled(PACKAGE_SYSLOG) ):
        Core.updateStatus(Core.IGNORE, "The " + PACKAGE_SYSLOG + " package is 
installed")
 else:
        if( upgraded() ):
@@ -77,4 +80,4 @@
        else:
                Core.updateStatus(Core.WARN, "The rsyslog package is missing, 
system logging is disabled")
 
-Core.printPatternResults()
\ No newline at end of file
+Core.printPatternResults()

Reply via email to