From 8e4ba32c9aa1f65c0dca4b17aca3c7fd708febb3 Mon Sep 17 00:00:00 2001 From: eabdullin Date: Wed, 22 May 2024 13:48:34 +0000 Subject: [PATCH] import CS sos-4.7.1-2.el8 --- .gitignore | 2 +- .sos.metadata | 2 +- .../sos-RHEL-35945-sos-clean-on-archive.patch | 30 +++++++++++++++++++ SPECS/sos.spec | 14 +++++++-- 4 files changed, 44 insertions(+), 4 deletions(-) create mode 100644 SOURCES/sos-RHEL-35945-sos-clean-on-archive.patch diff --git a/.gitignore b/.gitignore index 8f5236b..4aaeab5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -SOURCES/sos-4.7.0.tar.gz +SOURCES/sos-4.7.1.tar.gz SOURCES/sos-audit-0.3.tgz diff --git a/.sos.metadata b/.sos.metadata index 67aeec0..273af72 100644 --- a/.sos.metadata +++ b/.sos.metadata @@ -1,2 +1,2 @@ -7d1629848263be2d613983fb15cd418dccdf1c76 SOURCES/sos-4.7.0.tar.gz +9ced981872d308e13c5dc47fee21071592ceefc2 SOURCES/sos-4.7.1.tar.gz 9d478b9f0085da9178af103078bbf2fd77b0175a SOURCES/sos-audit-0.3.tgz diff --git a/SOURCES/sos-RHEL-35945-sos-clean-on-archive.patch b/SOURCES/sos-RHEL-35945-sos-clean-on-archive.patch new file mode 100644 index 0000000..ddfeaca --- /dev/null +++ b/SOURCES/sos-RHEL-35945-sos-clean-on-archive.patch @@ -0,0 +1,30 @@ +From a0c2586e230c9600d3d3f70ab89c9f6eb52ed3ed Mon Sep 17 00:00:00 2001 +From: Pavel Moravec +Date: Tue, 23 Apr 2024 11:00:11 +0200 +Subject: [PATCH] [archive] Fix get_archive_root after files reordering + +Commit d5d8c21 reordered files in the archive, such that the first +member is not the archive root directory further more. Let change the +get_archive_root method accordingly to prevent self.archive_root being +empty. + +Resolves: #3616 + +Signed-off-by: Pavel Moravec +--- + sos/cleaner/archives/__init__.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/sos/cleaner/archives/__init__.py b/sos/cleaner/archives/__init__.py +index f7c5eb587..0fa1ef43f 100644 +--- a/sos/cleaner/archives/__init__.py ++++ b/sos/cleaner/archives/__init__.py +@@ -104,7 +104,7 @@ def get_archive_root(self): + if toplevel.isdir(): + return toplevel.name + else: +- return os.sep ++ return os.path.dirname(toplevel.name) or os.sep + return os.path.abspath(self.archive_path) + + def report_msg(self, msg): diff --git a/SPECS/sos.spec b/SPECS/sos.spec index e6d8501..f0fc7da 100644 --- a/SPECS/sos.spec +++ b/SPECS/sos.spec @@ -4,8 +4,8 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos -Version: 4.7.0 -Release: 1%{?dist} +Version: 4.7.1 +Release: 2%{?dist} Group: Applications/System Source0: https://github.com/sosreport/sos/archive/%{version}/sos-%{version}.tar.gz Source1: sos-audit-%{auditversion}.tgz @@ -22,6 +22,7 @@ Recommends: python3-pexpect Recommends: python3-pyyaml Conflicts: vdsm < 4.40 Obsoletes: sos-collector +Patch1: sos-RHEL-35945-sos-clean-on-archive.patch %description Sos is a set of tools that gathers information about system @@ -32,6 +33,7 @@ support technicians and developers. %prep %setup -qn %{name}-%{version} %setup -T -D -a1 -q +%patch1 -p1 %build @@ -105,6 +107,14 @@ of the system. Currently storage and filesystem commands are audited. %ghost /etc/audit/rules.d/40-sos-storage.rules %changelog +* Thu May 09 2024 Pavel Moravec = 4.7.1-2 +- [archive] Fix get_archive_root after files reordering + Resolves: RHEL-35945 + +* Mon Apr 08 2024 Jan Jansky = 4.7.1-1 +- rebase to upstream 4.7.1 + Resolves: RHEL-32104 + * Tue Feb 20 2024 Jan Jansky = 4.7.0-1 - rebase to upstream 4.7.0 Resolves: RHEL-26111