Merge branch 'c9' into a9
This commit is contained in:
commit
653ab63003
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,2 @@
|
|||||||
SOURCES/sos-4.7.0.tar.gz
|
SOURCES/sos-4.7.1.tar.gz
|
||||||
SOURCES/sos-audit-0.3.tgz
|
SOURCES/sos-audit-0.3.tgz
|
||||||
|
@ -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
|
9d478b9f0085da9178af103078bbf2fd77b0175a SOURCES/sos-audit-0.3.tgz
|
||||||
|
30
SOURCES/sos-RHEL-35945-sos-clean-on-archive.patch
Normal file
30
SOURCES/sos-RHEL-35945-sos-clean-on-archive.patch
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
From a0c2586e230c9600d3d3f70ab89c9f6eb52ed3ed Mon Sep 17 00:00:00 2001
|
||||||
|
From: Pavel Moravec <pmoravec@redhat.com>
|
||||||
|
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 <pmoravec@redhat.com>
|
||||||
|
---
|
||||||
|
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):
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
Summary: A set of tools to gather troubleshooting information from a system
|
Summary: A set of tools to gather troubleshooting information from a system
|
||||||
Name: sos
|
Name: sos
|
||||||
Version: 4.7.0
|
Version: 4.7.1
|
||||||
Release: 1%{?dist}.alma.1
|
Release: 3%{?dist}.alma.1
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Source0: https://github.com/sosreport/sos/archive/%{version}/sos-%{version}.tar.gz
|
Source0: https://github.com/sosreport/sos/archive/%{version}/sos-%{version}.tar.gz
|
||||||
Source1: sos-audit-%{auditversion}.tgz
|
Source1: sos-audit-%{auditversion}.tgz
|
||||||
@ -22,6 +22,7 @@ Recommends: python3-pexpect
|
|||||||
Recommends: python3-pyyaml
|
Recommends: python3-pyyaml
|
||||||
Conflicts: vdsm < 4.40
|
Conflicts: vdsm < 4.40
|
||||||
Obsoletes: sos-collector <= 1.9
|
Obsoletes: sos-collector <= 1.9
|
||||||
|
Patch1: sos-RHEL-35945-sos-clean-on-archive.patch
|
||||||
|
|
||||||
# AlmaLinux patches
|
# AlmaLinux patches
|
||||||
Patch1000: sos-almalinux-branding.patch
|
Patch1000: sos-almalinux-branding.patch
|
||||||
@ -35,6 +36,7 @@ support technicians and developers.
|
|||||||
%prep
|
%prep
|
||||||
%setup -qn %{name}-%{version}
|
%setup -qn %{name}-%{version}
|
||||||
%setup -T -D -a1 -q
|
%setup -T -D -a1 -q
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
# AlmaLinux patches
|
# AlmaLinux patches
|
||||||
%patch1000 -p1
|
%patch1000 -p1
|
||||||
@ -110,9 +112,17 @@ of the system. Currently storage and filesystem commands are audited.
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Apr 10 2024 Eduard Abdullin <eabdullin@almalinux.org> - 4.7.0-1.alma.1
|
* Mon Jun 24 2024 Andrew Lukoshko <alukoshko@almalinux.org> - 4.7.1-3.alma.1
|
||||||
- Debrand for AlmaLinux
|
- Debrand for AlmaLinux
|
||||||
|
|
||||||
|
* Thu May 09 2024 Pavel Moravec <pmoravec@redhat.com> = 4.7.1-3
|
||||||
|
- [archive] Fix get_archive_root after files reordering
|
||||||
|
Resolves: RHEL-35945
|
||||||
|
|
||||||
|
* Mon Apr 08 2024 Jan Jansky <jjansky@redhat.com> = 4.7.1-1
|
||||||
|
- rebase to upstream 4.7.1
|
||||||
|
Resolves: RHEL-32106
|
||||||
|
|
||||||
* Tue Feb 20 2024 Jan Jansky <jjansky@redhat.com> = 4.7.0-1
|
* Tue Feb 20 2024 Jan Jansky <jjansky@redhat.com> = 4.7.0-1
|
||||||
- rebase to upstream 4.7.0
|
- rebase to upstream 4.7.0
|
||||||
Resolves: RHEL-26115
|
Resolves: RHEL-26115
|
||||||
@ -150,9 +160,11 @@ of the system. Currently storage and filesystem commands are audited.
|
|||||||
* Thu Jul 27 2023 Pavel Moravec <pmoravec@redhat.com> = 4.5.6-1
|
* Thu Jul 27 2023 Pavel Moravec <pmoravec@redhat.com> = 4.5.6-1
|
||||||
- Collect db files for ovn interconnect environment
|
- Collect db files for ovn interconnect environment
|
||||||
Resolves: bz2226682
|
Resolves: bz2226682
|
||||||
|
|
||||||
* Fri Jul 14 2023 Jan Jansky <jjansky@redhat.com> - 4.5.5-2
|
* Fri Jul 14 2023 Jan Jansky <jjansky@redhat.com> - 4.5.5-2
|
||||||
- Adding patch for cleaning mac addresses
|
- Adding patch for cleaning mac addresses
|
||||||
Resolves: bz2217943
|
Resolves: bz2217943
|
||||||
|
|
||||||
* Mon Jul 03 2023 Jan Jansky <jjansky@redhat.com> = 4.5.5-1
|
* Mon Jul 03 2023 Jan Jansky <jjansky@redhat.com> = 4.5.5-1
|
||||||
- Rebase on upstream 4.5.5
|
- Rebase on upstream 4.5.5
|
||||||
Resolves: bz2217943
|
Resolves: bz2217943
|
||||||
@ -168,6 +180,7 @@ of the system. Currently storage and filesystem commands are audited.
|
|||||||
Resolves: bz2174254
|
Resolves: bz2174254
|
||||||
- [powerpc]: To collect lparnumascore logs
|
- [powerpc]: To collect lparnumascore logs
|
||||||
Resolves: bz2177984
|
Resolves: bz2177984
|
||||||
|
|
||||||
* Wed Mar 08 2023 Pavel Moravec <pmoravec@redhat.com> = 4.5.1-3
|
* Wed Mar 08 2023 Pavel Moravec <pmoravec@redhat.com> = 4.5.1-3
|
||||||
- Rebase on upstream 4.5.1
|
- Rebase on upstream 4.5.1
|
||||||
Resolves: bz2175808
|
Resolves: bz2175808
|
||||||
|
Loading…
Reference in New Issue
Block a user