Compare commits
No commits in common. "c8s" and "c9-beta" have entirely different histories.
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/rig-1.1.tar.gz
|
SOURCES/rig-1.1.tar.gz
|
||||||
/rig-1.1.tar.gz
|
|
||||||
|
|||||||
1
.rig.metadata
Normal file
1
.rig.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
5d4696794a5f5ff18d05a8595bbc53562b5f372a SOURCES/rig-1.1.tar.gz
|
||||||
@ -20,11 +20,11 @@ index 5f7435a..abf6471 100644
|
|||||||
@@ -14,7 +14,7 @@ from pipes import quote
|
@@ -14,7 +14,7 @@ from pipes import quote
|
||||||
from rigging.actions import BaseAction
|
from rigging.actions import BaseAction
|
||||||
from rigging.exceptions import CannotConfigureRigError
|
from rigging.exceptions import CannotConfigureRigError
|
||||||
|
|
||||||
-SOS_BIN = '/usr/sbin/sosreport --batch'
|
-SOS_BIN = '/usr/sbin/sosreport --batch'
|
||||||
+SOS_BIN = '/usr/sbin/sos report --batch'
|
+SOS_BIN = '/usr/sbin/sos report --batch'
|
||||||
|
|
||||||
|
|
||||||
class SoSReport(BaseAction):
|
class SoSReport(BaseAction):
|
||||||
@@ -23,7 +23,7 @@ class SoSReport(BaseAction):
|
@@ -23,7 +23,7 @@ class SoSReport(BaseAction):
|
||||||
enabling_opt = 'sosreport'
|
enabling_opt = 'sosreport'
|
||||||
@ -34,6 +34,7 @@ index 5f7435a..abf6471 100644
|
|||||||
+ required_binaries = ('sos',)
|
+ required_binaries = ('sos',)
|
||||||
sos_opts = ('only_plugins', 'skip_plugins', 'enable_plugins',
|
sos_opts = ('only_plugins', 'skip_plugins', 'enable_plugins',
|
||||||
'plugin_option')
|
'plugin_option')
|
||||||
|
|
||||||
--
|
--
|
||||||
2.50.1
|
2.50.1
|
||||||
|
|
||||||
@ -1,15 +1,12 @@
|
|||||||
Name: rig
|
Name: rig
|
||||||
Summary: Monitor a system for events and trigger specific actions
|
Summary: Monitor a system for events and trigger specific actions
|
||||||
Version: 1.1
|
Version: 1.1
|
||||||
Release: 4%{?dist}
|
Release: 7%{?dist}
|
||||||
Url: https://github.com/TurboTurtle/rig
|
Url: https://github.com/TurboTurtle/rig
|
||||||
Source0: %{url}/archive/%{name}-%{version}.tar.gz
|
Source0: %{url}/archive/%{name}-%{version}.tar.gz
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: python3dist(systemd-python)
|
|
||||||
Requires: python3dist(psutil)
|
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3dist(systemd-python)
|
BuildRequires: python3dist(systemd-python)
|
||||||
@ -27,9 +24,10 @@ troubleshooting and data collection for randomly occurring events.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1 -p1
|
%patch -P 1 -p1
|
||||||
%patch2 -p1
|
%patch -P 2 -p1
|
||||||
%patch3 -p1
|
%patch -P 3 -p1
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
@ -50,22 +48,28 @@ install -p -m644 man/en/rig.1 ${RPM_BUILD_ROOT}%{_mandir}/man1/
|
|||||||
%doc README.md
|
%doc README.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Aug 06 2025 Jose Castillo <jcastill@redhat.com> - 1.1-4
|
* Wed Aug 06 2025 Jose Castillo <jcastill@redhat.com> - 1.1-7
|
||||||
- Add fix to avoid using deprecated sosreport command.
|
- Add fix to avoid using deprecated sosreport command.
|
||||||
|
|
||||||
* Mon Jun 13 2022 Jake Hunsaker <jhunsake@redhat.com> - 1.1-3
|
* Tue Jun 14 2022 Jake Hunsaker <jhunsake@redhat.com> - 1.1-6
|
||||||
- Backport change to temp dir creation to ignore rig ID
|
- Backport change to temp dir creation to ignore rig ID
|
||||||
|
|
||||||
* Tue May 31 2022 Jake Hunsaker <jhunsake@redhat.com> - 1.1-2
|
* Thu Jun 02 2022 Jake Hunsaker <jhunsake@redhat.com> - 1.1-4
|
||||||
- Backport fix of rig list race condition
|
- Backport fix for rig list race condition
|
||||||
|
|
||||||
* Fri Apr 22 2022 Jake Hunsaker <jhunsake@redhat.com> - 1.1-1
|
* Fri May 04 2022 Jake Hunsaker <jhunsake@redhat.com> - 1.1-2
|
||||||
- Rebase to version 1.1
|
- Rebase to version 1.1
|
||||||
Related: RHBZ#2064752
|
Related: RHBZ#2077096
|
||||||
|
|
||||||
* Mon Oct 04 2021 Jake Hunsaker <jhunsake@redhat.com> - 1.0-3
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.0-4
|
||||||
- Rebuilt for RHEL 8.6.0
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
- RHBZ#1888705
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.0-3
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
* Tue Jul 28 2020 Jake Hunsaker <jhunsake@redhat.com> - 1.0-1
|
* Tue Jul 28 2020 Jake Hunsaker <jhunsake@redhat.com> - 1.0-1
|
||||||
- Version 1.0 release
|
- Version 1.0 release
|
||||||
@ -1,7 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-8
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user