forked from cockpit-project/starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,33 @@ | ||
Name: cockpit-session-recording | ||
Version: @VERSION@ | ||
Version: 1 | ||
Release: 1%{?dist} | ||
Summary: Cockpit Session Recording | ||
License: LGPLv2+ | ||
URL: https://github.com/Scribery/%{name} | ||
Source: https://github.com/Scribery/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz | ||
|
||
Source: cockpit-session-recording-%{version}.tar.gz | ||
BuildArch: noarch | ||
|
||
BuildRequires: libappstream-glib | ||
Requires: cockpit-system | ||
Requires: tlog | ||
BuildRequires: libappstream-glib | ||
|
||
%define debug_package %{nil} | ||
|
||
%description | ||
Cockpit Session Recording | ||
Cockpit module providing session recording configuration and playback. | ||
This module allows viewing and playback of journal-stored terminal session | ||
recordings generated by the tlog component. | ||
|
||
%prep | ||
%setup -n cockpit-session-recording | ||
%setup -qn cockpit-session-recording | ||
|
||
%install | ||
%make_install | ||
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml | ||
|
||
%files | ||
%{_datadir}/cockpit/* | ||
%{_datadir}/metainfo/* | ||
%{_datadir}/cockpit/session-recording | ||
%{_datadir}/metainfo/org.cockpit-project.session-recording.metainfo.xml | ||
|
||
%changelog | ||
* Thu Apr 4 2019 Kirill Glebov <[email protected]> - 1-1 | ||
- Release 1 | ||
- First release. Includes logs correlation, player controls, journal remote support. |