Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package supportutils for openSUSE:Factory checked in at 2021-06-01 10:33:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/supportutils (Old) and /work/SRC/openSUSE:Factory/.supportutils.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "supportutils" Tue Jun 1 10:33:59 2021 rev:24 rq:895606 version:3.1.15 Changes: -------- --- /work/SRC/openSUSE:Factory/supportutils/supportutils.changes 2021-05-15 23:16:52.268575914 +0200 +++ /work/SRC/openSUSE:Factory/.supportutils.new.1898/supportutils.changes 2021-06-01 10:34:17.296488871 +0200 @@ -1,0 +2,5 @@ +Mon May 24 22:01:43 UTC 2021 - Jason Record <[email protected]> + +- analyzevmcore supports local directories (bsc#1186397) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ supportutils-3.1.15.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/supportutils-3.1.15/bin/analyzevmcore new/supportutils-3.1.15/bin/analyzevmcore --- old/supportutils-3.1.15/bin/analyzevmcore 2021-04-15 20:57:56.511762359 +0200 +++ new/supportutils-3.1.15/bin/analyzevmcore 2021-05-26 03:02:06.747577345 +0200 @@ -1,7 +1,7 @@ #!/bin/bash -SVER='1.34' -SDATE="2020 04 27" +SVER='1.38' +SDATE="2021 05 25" SNAME="analyzevmcore" # --------------------------------------------------------------------- # @@ -11,7 +11,7 @@ # Please submit bug fixes or comments via: # # http://en.opensuse.org/Supportutils#Reporting_Bugs # # # -# Copyright (C) 1999-2020 SUSE Linux Products GmbH, Nuernberg, Germany # +# Copyright (C) 1999-2021 SUSE Linux Products GmbH, Nuernberg, Germany # # # # --------------------------------------------------------------------- # # # @@ -52,6 +52,8 @@ # --------------------------------------------------------------------- # # Changes: # # # +# 1.38 Release # +# - Fixed local directory KDUMP_SAVEDIR support # # 1.33 Release # # - Changed filename prefix from nts_ to scc_ with FILENAME_PREFIX # # - Processes all available crash dumps # @@ -530,15 +532,18 @@ CRASHV4="1" fi -if [ -z "$COREDIR" ]; then +if [[ -z "$COREDIR" ]]; then #Source /etc/sysconfig/kdump - if [ -e "/etc/sysconfig/kdump" ]; then + if [[ -e "/etc/sysconfig/kdump" ]]; then . /etc/sysconfig/kdump - if [ "${KDUMP_SAVEDIR:0:8}" = "file:///" ]; then + if [[ "${KDUMP_SAVEDIR:0:8}" = "file:///" ]]; then KDUMP_SAVEDIR=${KDUMP_SAVEDIR:7} + elif [[ "${KDUMP_SAVEDIR:0:1}" = "/" ]]; then + : else echo "Unsupported KDUMP_SAVEDIR specified in /etc/sysconfig/kdump!" - echo " Supported syntax: file:///var/crash" + echo " Only local directories are supported" + echo ' Supported syntax: [file://]/var/crash' echo " Current setting: $KDUMP_SAVEDIR" echo exit -1 @@ -548,8 +553,8 @@ fi fi -if [ -z "$COREDIR" ]; then - if ! [ -d "$KDUMP_SAVEDIR" ]; then +if [[ -z "$COREDIR" ]]; then + if ! [[ -d "$KDUMP_SAVEDIR" ]]; then echo "Invalid KDUMP_SAVEDIR specified in /etc/sysconfig/kdump! ($KDUMP_SAVEDIR)" echo exit -1 @@ -557,7 +562,7 @@ COREDIR=$($LS_BIN -d $KDUMP_SAVEDIR/* 2>/dev/null) fi else - if ! [ -d "$COREDIR" ]; then + if ! [[ -d "$COREDIR" ]]; then echo "Invalid core directory specified! ($COREDIR)" echo exit -1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/supportutils-3.1.15/spec/supportutils.changes new/supportutils-3.1.15/spec/supportutils.changes --- old/supportutils-3.1.15/spec/supportutils.changes 2021-05-12 22:43:56.669487461 +0200 +++ new/supportutils-3.1.15/spec/supportutils.changes 2021-05-25 00:02:20.239367629 +0200 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Mon May 24 22:01:43 UTC 2021 - Jason Record <[email protected]> + +- analyzevmcore supports local directories (bsc#1186397) + +------------------------------------------------------------------- Wed May 12 20:43:16 UTC 2021 - Jason Record <[email protected]> - getappcore checks for valid compression binary (bsc#1185991)
