Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sca-patterns-sle11 for openSUSE:Factory checked in at 2021-06-01 10:37:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sca-patterns-sle11 (Old) and /work/SRC/openSUSE:Factory/.sca-patterns-sle11.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sca-patterns-sle11" Tue Jun 1 10:37:17 2021 rev:12 rq:895600 version:1.3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/sca-patterns-sle11/sca-patterns-sle11.changes 2021-05-05 20:41:05.818628758 +0200 +++ /work/SRC/openSUSE:Factory/.sca-patterns-sle11.new.1898/sca-patterns-sle11.changes 2021-06-01 10:38:19.732901625 +0200 @@ -1,0 +2,7 @@ +Mon May 24 14:42:28 UTC 2021 - Jason Record <[email protected]> + +- Changes in version 1.3.2 + - Deleted regular patterns (1) + + sle11all/bhc-scc.sh: Pattern removed (bsc#1184594) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sca-patterns-sle11-1.3.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11all/bhc-scc.sh new/sca-patterns-sle11-1.3.2/patterns/SLE/sle11all/bhc-scc.sh --- old/sca-patterns-sle11-1.3.2/patterns/SLE/sle11all/bhc-scc.sh 2017-07-07 18:13:55.433780052 +0200 +++ new/sca-patterns-sle11-1.3.2/patterns/SLE/sle11all/bhc-scc.sh 1970-01-01 01:00:00.000000000 +0100 @@ -1,78 +0,0 @@ -#!/bin/bash - -# Title: Validate supportconfig -# Description: Confirms supportconfig is current -# Modified: 2013 Nov 19 - -CURRENT_VERSION='2.25-390' - -############################################################################## -# Copyright (C) 2013 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]) -# -############################################################################## - -############################################################################## -# Module Definition -############################################################################## - -LIBS='Core.rc SUSE.rc' -for LIB in $LIBS; do [[ -s ${BASHLIB}/${LIB} ]] && . ${BASHLIB}/${LIB} || { echo "Error: Library not found - ${BASHLIB}/${LIB}"; exit 5; }; done - -############################################################################## -# Overriden (eventually or in part) from Core.rc -############################################################################## - -PATTERN_RESULTS=(\ -"META_CLASS=Basic Health" \ -"META_CATEGORY=SLE" \ -"META_COMPONENT=Supportconfig" \ -"PATTERN_ID=$(basename $0)" \ -"PRIMARY_LINK=META_LINK_CoolSolution" \ -"OVERALL=$GSTATUS" \ -"OVERALL_INFO=None" \ -"META_LINK_CoolSolution=http://www.novell.com/coolsolutions/tools/16106.html" \ -"META_LINK_Patch=https://www.suse.com/communities/conversations/files/2013/03/supportutils-plugin-updater-1.0-25.1.noarch.rpm" \ - -) - -processOptions "$@" -packageInstalled 'ntsutils' -if (( $? )) -then - updateStatus $STATUS_CRITICAL "Supportconfig from ntsutils package is deprecated, remove ntsutils and install the supportutils package" -else - getSCInfo # populates SC_INFO_VERSION - compareVersions "$SC_INFO_VERSION" "$CURRENT_VERSION" - RESULTS=$? - printDebug "main RESULTS" "$RESULTS" - if (( $RESULTS < $COMPARED_EQUAL )) - then - packageInstalled 'supportutils-plugin-updater' - if (( $? )) - then - updateStatus $STATUS_WARNING "Supportconfig version $SC_INFO_VERSION is outdated, run updateSupportutils to update" - else - updateStatus $STATUS_WARNING "Supportconfig version $SC_INFO_VERSION is outdated, update supportutils package for better results" - fi - else - setStatus $STATUS_SUCCESS "Supportconfig version $SC_INFO_VERSION is sufficient" - fi -fi -printPatternResults -
