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-02-22 14:23:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/supportutils (Old) and /work/SRC/openSUSE:Factory/.supportutils.new.2378 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "supportutils" Mon Feb 22 14:23:12 2021 rev:18 rq:873385 version:3.1.14 Changes: -------- --- /work/SRC/openSUSE:Factory/supportutils/supportutils.changes 2021-02-11 12:52:17.561910696 +0100 +++ /work/SRC/openSUSE:Factory/.supportutils.new.2378/supportutils.changes 2021-02-22 14:23:13.835600412 +0100 @@ -2 +2 @@ -Mon Feb 8 15:30:43 UTC 2021 - [email protected] +Tue Feb 16 20:10:28 UTC 2021 - [email protected] @@ -6,0 +7,4 @@ + + ha.txt: Fix pacemaker.log location for SLE15 #90 + + supportconfig: use readlink /proc/<pid>/cwd to get cwd list instead of lsof #91 + + supportconfig: sssd_info consistency #93 + + Includes NVMe information with OPTION_NVME=1 in nvme.txt (bsc#1176370, SLE-15932) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ supportutils-3.1.14.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/supportutils-3.1.14/bin/supportconfig new/supportutils-3.1.14/bin/supportconfig --- old/supportutils-3.1.14/bin/supportconfig 2021-02-05 20:27:40.851410433 +0100 +++ new/supportutils-3.1.14/bin/supportconfig 2021-02-16 21:15:23.213026680 +0100 @@ -1,15 +1,15 @@ #!/bin/bash -SVER='3.1.10-8' -SDATE='2021 02 05' +SVER='3.1.11-1' +SDATE='2021 02 16' ############################################################################## # supportconfig - Gathers system troubleshooting information for SUSE Support -# Copyright (C) 2001-2020 SUSE LLC +# Copyright (C) 2001-2021 SUSE LLC # -# Creates a tar ball to attach to the SR or send to support. Collects -# comprehensive system information for troubleshooting and reducing resolution -# time. +# Creates a tar ball to attach to the support case or send to support. +# Collects comprehensive system information for troubleshooting and reducing +# resolution time. # # Disclaimer: # Detailed system information and logs are collected and organized in a @@ -2151,6 +2151,37 @@ esac } +nvme_info() { + printlog "NVMe..." + test $OPTION_NVME -eq 0 && { echolog Excluded; return 1; } + OF=nvme.txt + addHeaderFile $OF + NVME_PKG='nvme-cli' + if lsmod | grep nvme &> /dev/null; then + if rpm_verify $OF $NVME_PKG + then + log_cmd $OF "nvme list" + log_cmd $OF "nvme list-subsys" + FILES="/etc/nvme/*" + [[ -d /etc/nvme/ ]] && conf_files $OF $FILES + [[ -f /etc/nvme/discovery.conf ]] && log_cmd $OF "nvme discover" + NVME_DEVICES=$(nvme list | grep /dev | awk '{print $1}') + for NVME_DEVICE in $NVME_DEVICES + do + log_entry $OF note "Processing: $NVME_DEVICE" + log_cmd $OF "nvme id-ctrl -H $NVME_DEVICE" + log_cmd $OF "nvme fw-log $NVME_DEVICE" + log_cmd $OF "nvme smart-log $NVME_DEVICE" + log_entry $OF note "Done: $NVME_DEVICE" + done + log_cmd $OF "lspci -tv" + fi + echolog Done + else + echolog Skipped + fi +} + udev_info() { printlog "UDEV..." test $OPTION_UDEV -eq 0 && { echolog Excluded; return 1; } @@ -4232,6 +4263,7 @@ boot_info slert_info update_info + nvme_info smt_info ha_info ocfs2_info diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/supportutils-3.1.14/bin/supportconfig.rc new/supportutils-3.1.14/bin/supportconfig.rc --- old/supportutils-3.1.14/bin/supportconfig.rc 2021-02-04 22:17:07.448181803 +0100 +++ new/supportutils-3.1.14/bin/supportconfig.rc 2021-02-16 21:15:23.213026680 +0100 @@ -35,6 +35,7 @@ OPTION_NET=1 OPTION_NFS=1 OPTION_NTP=1 +OPTION_NVME=1 OPTION_OCFS2=1 OPTION_OFILES=1 OPTION_PRINT=1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/supportutils-3.1.14/man/supportconfig.8 new/supportutils-3.1.14/man/supportconfig.8 --- old/supportutils-3.1.14/man/supportconfig.8 2021-02-05 19:59:13.431218413 +0100 +++ new/supportutils-3.1.14/man/supportconfig.8 2021-02-16 21:15:23.213026680 +0100 @@ -1,4 +1,4 @@ -.TH SUPPORTCONFIG 8 "05 Feb 2021" "supportutils" "Support Utilities Manual" +.TH SUPPORTCONFIG 8 "16 Feb 2021" "supportutils" "Support Utilities Manual" .SH NAME supportconfig - Gathers system troubleshooting information .SH SYNOPSIS @@ -251,7 +251,7 @@ .B http://en.opensuse.org/Supportutils#Reporting_Bugs .SH AUTHOR -Jason Record <[email protected]> +Jason Record <[email protected]> .SH COPYRIGHT 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 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/supportutils-3.1.14/man/supportconfig.conf.5 new/supportutils-3.1.14/man/supportconfig.conf.5 --- old/supportutils-3.1.14/man/supportconfig.conf.5 2021-02-05 19:57:57.697321810 +0100 +++ new/supportutils-3.1.14/man/supportconfig.conf.5 2021-02-16 21:15:23.213026680 +0100 @@ -1,4 +1,4 @@ -.TH SUPPORTCONFIG.CONF 5 "05 Feb 2021" "supportutils" "Support Utilities Manual" +.TH SUPPORTCONFIG.CONF 5 "10 Feb 2021" "supportutils" "Support Utilities Manual" .SH NAME supportconfig.conf \- .BR supportconfig (8) @@ -117,6 +117,9 @@ OPTION_NTP Network Time Protocol related information. \fBntp.txt\fR (1) .TP +OPTION_NVME +Non-Volatile Memory Express (NVMe) information. \fBnvme.txt\fR (1) +.TP OPTION_OCFS2 OCFS2 file system related information. \fBocfs2.txt\fR (1) .TP diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/supportutils-3.1.14/spec/supportutils.changes new/supportutils-3.1.14/spec/supportutils.changes --- old/supportutils-3.1.14/spec/supportutils.changes 2021-02-08 16:31:24.541632319 +0100 +++ new/supportutils-3.1.14/spec/supportutils.changes 2021-02-16 21:15:23.213026680 +0100 @@ -1,9 +1,13 @@ ------------------------------------------------------------------- -Mon Feb 8 15:30:43 UTC 2021 - [email protected] +Tue Feb 16 20:10:28 UTC 2021 - [email protected] - Additions to version 3.1.14 - + [powerpc] Collect logs for power specific components (HNV ) #88 (bsc#1181911) + + [powerpc] Collect logs for power specific components (HNV) #88 (bsc#1181911) + Updated pam.txt documentation explaining GDPR + + ha.txt: Fix pacemaker.log location for SLE15 #90 + + supportconfig: use readlink /proc/<pid>/cwd to get cwd list instead of lsof #91 + + supportconfig: sssd_info consistency #93 + + Includes NVMe information with OPTION_NVME=1 in nvme.txt (bsc#1176370, SLE-15932) ------------------------------------------------------------------- Thu Feb 4 18:44:12 UTC 2021 - [email protected]
