2021-01-08 16:27:40 +00:00
|
|
|
%global _hardened_build 1
|
|
|
|
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 7
|
|
|
|
# If it's RHEL6 and older
|
|
|
|
%bcond_with systemd
|
|
|
|
%else
|
|
|
|
%bcond_without systemd
|
|
|
|
%endif
|
2016-04-15 12:28:24 +00:00
|
|
|
|
2021-01-08 16:27:40 +00:00
|
|
|
%if "%{_vendor}" == "debbuild"
|
|
|
|
# Set values to make debian builds work well
|
|
|
|
%global _defaultdocdir /usr/share/doc/%{name}
|
|
|
|
%global _buildshell /bin/bash
|
|
|
|
%global _lib lib/%(%{__dpkg_architecture} -qDEB_HOST_MULTIARCH)
|
|
|
|
%endif
|
2016-04-15 12:28:24 +00:00
|
|
|
|
2021-01-08 16:27:40 +00:00
|
|
|
# Compatibility macros
|
|
|
|
%{!?_tmpfilesdir:%global _tmpfilesdir %{_prefix}/lib/tmpfiles.d}
|
|
|
|
%{!?make_build:%global make_build %{__make} %{?_smp_mflags}}
|
|
|
|
|
|
|
|
Name: tlog
|
2021-11-16 19:05:40 +00:00
|
|
|
Version: 12
|
2022-01-22 02:49:04 +00:00
|
|
|
Release: 2%{?dist}
|
2021-01-08 16:27:40 +00:00
|
|
|
Summary: Terminal I/O logger
|
|
|
|
|
|
|
|
%if "%{_vendor}" == "debbuild"
|
|
|
|
# Required for Debian
|
|
|
|
Packager: Justin Stephenson <jstephen@redhat.com>
|
|
|
|
Group: admin
|
|
|
|
License: GPL-2.0+
|
|
|
|
%else
|
|
|
|
Group: Applications/System
|
|
|
|
License: GPLv2+
|
|
|
|
%endif
|
|
|
|
|
|
|
|
URL: https://github.com/Scribery/%{name}
|
|
|
|
Source: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: libtool
|
2016-04-15 12:28:24 +00:00
|
|
|
BuildRequires: m4
|
2021-01-08 16:27:40 +00:00
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: make
|
|
|
|
|
|
|
|
%if "%{_vendor}" == "debbuild"
|
|
|
|
BuildRequires: libjson-c-dev
|
|
|
|
BuildRequires: libcurl4-gnutls-dev
|
|
|
|
BuildRequires: libutempter-dev
|
|
|
|
# Debian/Ubuntu doesn't automatically pull this in...
|
|
|
|
BuildRequires: pkg-config
|
|
|
|
|
|
|
|
%if %{with systemd}
|
|
|
|
BuildRequires: libsystemd-dev
|
|
|
|
# Expanded form of systemd_requires macro
|
|
|
|
Requires: systemd-sysv
|
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(post): systemd
|
|
|
|
Requires(postun): systemd
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%else
|
|
|
|
BuildRequires: pkgconfig(json-c)
|
|
|
|
BuildRequires: pkgconfig(libcurl)
|
|
|
|
%if %{defined suse_version}
|
|
|
|
BuildRequires: utempter-devel
|
|
|
|
%else
|
2020-10-28 16:02:27 +00:00
|
|
|
BuildRequires: libutempter-devel
|
2017-02-22 14:04:34 +00:00
|
|
|
%endif
|
2016-04-15 12:28:24 +00:00
|
|
|
|
2021-01-08 16:27:40 +00:00
|
|
|
%if %{with systemd}
|
|
|
|
BuildRequires: pkgconfig(libsystemd)
|
|
|
|
%{?systemd_requires}
|
|
|
|
%endif
|
|
|
|
%endif
|
2016-04-15 12:28:24 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Tlog is a terminal I/O recording program similar to "script", but used in
|
|
|
|
place of a user's shell, starting the recording and executing the real user's
|
|
|
|
shell afterwards. The recorded I/O can then be forwarded to a logging server
|
|
|
|
in JSON format.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
2021-01-08 16:27:40 +00:00
|
|
|
%configure --disable-rpath --disable-static --enable-utempter %{!?with_systemd:--disable-journal} --docdir=%{_defaultdocdir}/%{name}
|
|
|
|
%make_build
|
2016-04-15 12:28:24 +00:00
|
|
|
|
|
|
|
%check
|
2021-01-08 16:27:40 +00:00
|
|
|
%make_build check
|
2017-02-22 14:04:34 +00:00
|
|
|
|
2016-04-15 12:28:24 +00:00
|
|
|
%install
|
2021-01-08 16:27:40 +00:00
|
|
|
%make_install
|
2016-04-15 12:28:24 +00:00
|
|
|
rm %{buildroot}/%{_libdir}/*.la
|
2021-01-08 16:27:40 +00:00
|
|
|
|
2016-04-15 12:28:24 +00:00
|
|
|
# Remove development files as we're not doing a devel package yet
|
|
|
|
rm %{buildroot}/%{_libdir}/*.so
|
|
|
|
rm -r %{buildroot}/usr/include/%{name}
|
|
|
|
|
2021-01-08 16:27:40 +00:00
|
|
|
%if %{with systemd}
|
2017-02-22 14:04:34 +00:00
|
|
|
# Create tmpfiles.d configuration for the lock dir
|
|
|
|
mkdir -p %{buildroot}%{_tmpfilesdir}
|
|
|
|
{
|
|
|
|
echo "# Type Path Mode UID GID Age Argument"
|
|
|
|
echo "d /run/%{name} 0755 %{name} %{name}"
|
|
|
|
} > %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
|
|
|
# Else, if it's RHEL6 or older
|
|
|
|
%else
|
|
|
|
# Create the lock dir
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/run
|
|
|
|
install -d -m 0755 %{buildroot}%{_localstatedir}/run/%{name}
|
|
|
|
%endif
|
|
|
|
|
2016-04-15 12:28:24 +00:00
|
|
|
%files
|
|
|
|
%{!?_licensedir:%global license %doc}
|
|
|
|
%license COPYING
|
|
|
|
%doc %{_defaultdocdir}/%{name}
|
2018-01-24 14:53:54 +00:00
|
|
|
%{_bindir}/%{name}-rec
|
|
|
|
%attr(6755,%{name},%{name}) %{_bindir}/%{name}-rec-session
|
2017-02-22 14:04:34 +00:00
|
|
|
%{_bindir}/%{name}-play
|
2016-04-15 12:28:24 +00:00
|
|
|
%{_libdir}/lib%{name}.so*
|
|
|
|
%{_datadir}/%{name}
|
|
|
|
%{_mandir}/man5/*
|
|
|
|
%{_mandir}/man8/*
|
2021-01-08 16:27:40 +00:00
|
|
|
%if %{with systemd}
|
|
|
|
%{_tmpfilesdir}/%{name}.conf
|
2017-02-22 14:04:34 +00:00
|
|
|
%else
|
2021-01-08 16:27:40 +00:00
|
|
|
# If it's RHEL6 and older
|
2017-02-22 14:04:34 +00:00
|
|
|
%dir %attr(-,%{name},%{name}) %{_localstatedir}/run/%{name}
|
|
|
|
%endif
|
2016-04-15 12:28:24 +00:00
|
|
|
%dir %{_sysconfdir}/%{name}
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-rec.conf
|
2018-01-24 14:53:54 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-rec-session.conf
|
2016-04-15 12:28:24 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-play.conf
|
|
|
|
|
2021-01-08 16:27:40 +00:00
|
|
|
%pre
|
|
|
|
getent group %{name} >/dev/null ||
|
|
|
|
groupadd -r %{name}
|
|
|
|
getent passwd %{name} >/dev/null ||
|
|
|
|
useradd -r -g %{name} -d %{_localstatedir}/run/%{name} -s /sbin/nologin \
|
|
|
|
-c "Tlog terminal I/O logger" %{name}
|
|
|
|
|
2016-04-15 12:28:24 +00:00
|
|
|
%post
|
|
|
|
/sbin/ldconfig
|
2021-01-08 16:27:40 +00:00
|
|
|
%if 0%{?el7} || 0%{?suse_version} >= 1315
|
|
|
|
# For RHEL7 and SUSE Linux distributions, creation doesn't happen automatically
|
|
|
|
%tmpfiles_create %{name}.conf
|
|
|
|
%endif
|
|
|
|
%if 0%{?ubuntu} || 0%{?debian}
|
|
|
|
# For Debian/Ubuntu, creation doesn't happen automatically
|
|
|
|
systemd-tmpfiles --create %{name}.conf >/dev/null 2>&1 || :
|
|
|
|
%endif
|
2016-04-15 12:28:24 +00:00
|
|
|
|
|
|
|
%postun
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%changelog
|
2022-01-22 02:49:04 +00:00
|
|
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 12-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-16 19:05:40 +00:00
|
|
|
* Tue Nov 16 2021 Justin Stephenson <jstephen@redhat.com> - 12-1
|
|
|
|
- Release v12
|
|
|
|
- Prevent infinite transfer loop on GDM login.
|
|
|
|
- tlog-play: add journal namespace support.
|
|
|
|
- tlitest: extend delay for limit-action delay test.
|
|
|
|
|
2021-07-23 19:22:30 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 11-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-10 09:58:48 +00:00
|
|
|
* Sat Jul 10 2021 Björn Esser <besser82@fedoraproject.org> - 11-3
|
|
|
|
- Rebuild for versioned symbols in json-c
|
|
|
|
|
2021-01-27 22:02:29 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 11-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2022-03-02 18:38:01 +00:00
|
|
|
* Tue Jan 19 2021 Justin Stephenson <jstephen@redhat.com> - 11-1
|
2021-01-19 21:14:06 +00:00
|
|
|
- Release v11
|
|
|
|
- Fire SIGCHLD after utempter_add_record since it probably eats it.
|
|
|
|
|
2022-03-02 18:38:01 +00:00
|
|
|
* Fri Jan 8 2021 Justin Stephenson <jstephen@redhat.com> - 10-1
|
2021-01-19 21:14:06 +00:00
|
|
|
- Release v10
|
|
|
|
- Correct suse rpmbuild
|
|
|
|
- Update debbuild for travis CI
|
|
|
|
|
2020-10-13 13:57:00 +00:00
|
|
|
* Tue Oct 13 2020 Justin Stephenson <jstephen@redhat.com> - 9-1
|
|
|
|
- Release v9
|
|
|
|
- Add libutempter support
|
|
|
|
- Require journal match filter
|
|
|
|
- Add file reader match functionality
|
|
|
|
- Restore cursor visibility and color attributes on tlog-play exit
|
|
|
|
- Add "time" real clock timestamp message field
|
|
|
|
- Various upstream CI improvements
|
|
|
|
|
2020-07-29 12:36:06 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-22 20:21:19 +00:00
|
|
|
* Fri May 22 2020 Justin Stephenson <jstephen@redhat.com> - 8-2
|
|
|
|
- Minor test fixups
|
|
|
|
|
2020-05-19 15:44:18 +00:00
|
|
|
* Tue May 19 2020 Justin Stephenson <jstephen@redhat.com> - 8-1
|
|
|
|
- Release v8
|
|
|
|
- Spec file fixes for EL6
|
|
|
|
- Spec file improvements for Debian/Ubuntu pkg-config
|
|
|
|
- Tlog-play improve authentication options
|
|
|
|
- Handle piped in I/O from stdin and improve the main recording
|
|
|
|
transfer exit condition.
|
|
|
|
- Use empty string on hostname resolution failure
|
|
|
|
|
2020-04-21 22:14:03 +00:00
|
|
|
* Tue Apr 21 2020 Björn Esser <besser82@fedoraproject.org> - 7-3
|
|
|
|
- Rebuild (json-c)
|
|
|
|
|
2020-01-31 01:42:11 +00:00
|
|
|
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-11-12 15:25:19 +00:00
|
|
|
* Tue Nov 12 2019 Justin Stephenson <jstephen@redhat.com> - 7-1
|
|
|
|
- Release v7
|
|
|
|
- Allow tlog-play redirection of stdout
|
|
|
|
- Add -i/--interactive option to tlog-rec-session. Allows login
|
|
|
|
programs to call tlog-rec-session more transparently.
|
|
|
|
- Make in_txt/out_txt fields optional. This handles missing fields
|
|
|
|
when reading from Elasticsearch or other backends.
|
|
|
|
|
2019-07-27 01:34:40 +00:00
|
|
|
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-28 15:04:17 +00:00
|
|
|
* Tue May 28 2019 Justin Stephenson <jstephen@redhat.com> - 6-1
|
|
|
|
- Release v6. Added features and implemented fixes follow. See README.md and
|
|
|
|
manpages for documentation of new features.
|
|
|
|
- Add integration tests for end-to-end test coverage.
|
|
|
|
- Fix compiler type comparison error with json-c json_object_array_length
|
|
|
|
return value.
|
|
|
|
- Fix a distribution issue causing incorrect M4_CONF_PATH expansion.
|
|
|
|
- Log more detailed error when systemd journal is not present.
|
|
|
|
|
2019-02-03 09:57:46 +00:00
|
|
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-12-05 18:32:29 +00:00
|
|
|
* Wed Dec 5 2018 Kirill Glebov <kgliebov@redhat.com> - 5-1
|
|
|
|
- Release v5. Added features and implemented fixes follow. See README.md and
|
|
|
|
manpages for documentation of new features.
|
|
|
|
- Implement support for --configuration option for all programs.
|
|
|
|
The option makes the program output its configuration in JSON and then
|
|
|
|
exit.
|
|
|
|
- Add BuildDependencies to allow yum-builddep.
|
|
|
|
- Open JSON writer file with euid/egid. To allow creating protected log files
|
|
|
|
with tlog-rec-session, open the JSON writer's file with the EUID and
|
|
|
|
GUID the program was started with.
|
|
|
|
- Installing Packages with the APT Addon instead of apt-get.
|
|
|
|
- Switch to using TLOG_ERRS_RAISE macros.
|
|
|
|
- Fix tlog-play cleanup-path segfault.
|
|
|
|
- Modify command-line option parsing.
|
|
|
|
- Remove "fields" field from ES query URL to fix compatibility with
|
|
|
|
Elasticsearch 5.
|
|
|
|
- Remove unused _source parameter from ES query URL.
|
|
|
|
- Fix tlog-rec-session file permissions bug.
|
|
|
|
- Use CLOCK_MONOTONIC for rate-limiting writing.
|
|
|
|
- Filter out some more input control sequences.
|
2018-11-21 11:42:14 +00:00
|
|
|
|
2018-07-14 07:39:22 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-03-06 14:16:47 +00:00
|
|
|
* Tue Mar 06 2018 Björn Esser <besser82@fedoraproject.org> - 4-3
|
|
|
|
- Rebuilt for libjson-c.so.4 (json-c v0.13.1)
|
|
|
|
|
2018-02-09 19:05:22 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-24 14:53:54 +00:00
|
|
|
* Wed Jan 24 2018 Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> - 4-1
|
|
|
|
- Release v4. Added features and implemented fixes follow. See README.md and
|
|
|
|
manpages for documentation of new features.
|
|
|
|
- Extract user session recording functionality from tlog-rec into a new tool:
|
|
|
|
tlog-rec-session. It should be used as the user's login shell now, and
|
|
|
|
tlog-rec should be used as a general recording and testing tool.
|
|
|
|
- Add (optional) support for writing to and reading from Systemd Journal - the
|
|
|
|
"journal" reader and writer.
|
|
|
|
- Make tlog-rec default to "file" writer, and tlog-rec-session to "journal",
|
|
|
|
if built with Journal support, and to "syslog" otherwise.
|
|
|
|
- Add "-o" option to tlog-rec as an alias to "--file-path".
|
|
|
|
- Add "-i" option to tlog-play as an alias to "--file-path".
|
|
|
|
- Assume locale charset is UTF-8, if ASCII charset is detected, since that is
|
|
|
|
a likely indication the locale settings were lost. E.g. upon console login
|
|
|
|
or "su -" on Fedora and RHEL.
|
|
|
|
- Switch the "ver" JSON field type to string. Now it should be two numbers
|
|
|
|
separated by a dot. The increase of the first number indicates
|
|
|
|
forward-incompatible changes, the increase of the second number -
|
|
|
|
forward-compatible. If the dot and the second number are omitted, the second
|
|
|
|
number is considered to be zero. Bump the format version to "2".
|
|
|
|
- Add a new JSON field: "rec", containing an opaque host-unique recording ID.
|
|
|
|
Bump the format version to "2.1".
|
|
|
|
- Add support for playback controls, both through the command line and via
|
|
|
|
playback-time control keys, including: speed adjustment, pause/resume,
|
|
|
|
fast-forward to a time, and packet-by-packet stepping through the recording.
|
|
|
|
- Add optional rate-limiting of logged messages. Both throttling and dropping
|
|
|
|
messages are supported.
|
|
|
|
- Add "--lax" option to tlog-play to allow playing back recordings with
|
|
|
|
missing messages.
|
|
|
|
- Fix input being ignored when there is a lot of output, while recording.
|
|
|
|
- Remove addition of tlog-rec (tlog-rec-session) to /etc/shells from RPM
|
|
|
|
packaging to prevent users from changing their shells themselves once it has
|
|
|
|
been assigned.
|
|
|
|
- Add support for specifying the shell to start via the tlog-rec-session
|
|
|
|
executable name. E.g. by making a tlog-rec-session-shell-zsh ->
|
|
|
|
tlog-rec-session symlink and executing it. That can be used to specify
|
|
|
|
particular shells to be recorded for specific users by assigning these
|
|
|
|
symlinks as their login shells.
|
|
|
|
- Make error messages from all the tools a bit less noisy and more readable.
|
|
|
|
|
2017-12-10 19:50:43 +00:00
|
|
|
* Sun Dec 10 2017 Björn Esser <besser82@fedoraproject.org> - 3-4
|
|
|
|
- Rebuilt for libjson-c.so.3
|
|
|
|
|
2017-08-03 09:28:41 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 20:22:19 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-22 14:04:34 +00:00
|
|
|
* Wed Feb 22 2017 Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> - 3-1
|
|
|
|
- Release v3. Added features and implemented fixes follow.
|
|
|
|
- Make each JSON message timing data start with window size.
|
|
|
|
This makes it possible to pick up the stream from any message and also
|
|
|
|
combine messages, with window size known and preserved at all times.
|
|
|
|
- Add "term" field to JSON messages, specifying terminal type.
|
|
|
|
- Add "ver" field to JSON messages, specifying message format version.
|
|
|
|
- Set "SHELL" environment variable to actual user shell in tlog-rec.
|
|
|
|
- Check for locale's charset and abort tlog-rec if it's anything but the only
|
|
|
|
supported UTF-8.
|
|
|
|
- Add -v/--version option support to tlog-rec and tlog-play.
|
|
|
|
- Fix tlog-rec and tlog-play error output by accumulating error messages and
|
|
|
|
outputting them only after terminal settings are restored, on exit. Output
|
|
|
|
startup warnings before switching to raw terminal settings.
|
|
|
|
- Output a newline after restoring terminal settings in tlog-rec and
|
|
|
|
tlog-play, so that following output is not stuck to the end of the last line
|
|
|
|
of the raw output.
|
|
|
|
- Add an Elasticsearch mapping to documentation directory.
|
|
|
|
- Disable input logging by default to avoid storing passwords. Please enable
|
|
|
|
it explicitly in configuration, or on the command line, if necessary.
|
|
|
|
- Close log file written by tlog-rec on executing the shell in the child to
|
|
|
|
prevent log modification by the recorded user.
|
|
|
|
- Support running tlog-rec SUID/SGID to prevent recorded users from killing or
|
|
|
|
modifying it. Make tlog-rec SUID/SGID to user "tlog" in the RPM package.
|
|
|
|
- Add session locking to tlog-rec. This prevents tlog-rec from recording if
|
|
|
|
the audit session is already recorded by creating per-audit-session lock
|
|
|
|
files in /var/run/tlog. This only makes sense with tlog-rec SUID/SGID.
|
|
|
|
When certain failures occur while creating a lock file, session is assumed
|
|
|
|
unlocked and is recorded anyway, as it is safer to record a session than
|
|
|
|
not. Add corresponding setup to the RPM package.
|
|
|
|
- Reproduce the recorded program (shell) exit status in tlog-rec similarly to
|
|
|
|
how Bash reproduces the last executed command status.
|
|
|
|
- Update and expand README.md to describe secure log message filtering with
|
|
|
|
rsyslog, and playback directly from Elasticsearch, among other, smaller
|
|
|
|
additions.
|
|
|
|
|
2017-02-11 16:03:20 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-04-15 12:28:24 +00:00
|
|
|
* Wed Apr 6 2016 Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> - 2-1
|
|
|
|
- Release v2. Not ready for production. Following features are added.
|
|
|
|
- Fully-fledged command-line interface to tlog-play, along with config file
|
|
|
|
and man pages.
|
|
|
|
- Support for playback from file in tlog-play.
|
|
|
|
- Make tlog-play follow mode controllable and off by default.
|
|
|
|
- Get tlog-rec shell also from TLOG_REC_SHELL environment variable.
|
|
|
|
- Support non-TTY stdin/stdout in tlog-rec, allowing its use with
|
|
|
|
non-interactive SSH sessions.
|
|
|
|
- Support building on and packaging for EPEL5.
|
|
|
|
|
|
|
|
* Thu Feb 25 2016 Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> - 1-1
|
|
|
|
- Release v1. Not ready for production. Following features are included.
|
|
|
|
- Recording of user input, program output and window size changes.
|
|
|
|
- Support for writing into syslog and files.
|
|
|
|
- Tlog-rec configuration through system-wide configuration file
|
|
|
|
/etc/tlog/tlog-rec.conf, environment variables and command line.
|
|
|
|
- Very basic playback directly from ElasticSearch.
|