-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from ssahani/dev
Update the spec file
- Loading branch information
Showing
1 changed file
with
13 additions
and
9 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,5 +1,5 @@ | ||
Name: systemd-netlogd | ||
Version: 1.2 | ||
Version: 1.4 | ||
Release: 1%{?dist} | ||
Summary: Forwards messages from the journal to other hosts over the network using syslog format RFC 5424 | ||
|
||
|
@@ -15,11 +15,14 @@ BuildRequires: python3-sphinx | |
BuildRequires: meson >= 0.43 | ||
|
||
%description | ||
Forwards messages from the journal to other hosts over the network using | ||
the Syslog Protocol (RFC 5424). It can be configured to send messages to | ||
both unicast and multicast addresses. systemd-netlogd runs with own user | ||
systemd-journal-netlog. Starts sending logs when network is up and stops | ||
sending as soon as network is down (uses sd-network). | ||
Forwards messages from the journal to other hosts over the network | ||
using the Syslog Protocol (RFC 5424 and RFC 3339). It can be configured | ||
to send messages to both unicast and multicast addresses. systemd-netlogd | ||
runs with own user systemd-journal-netlog. Starts sending logs when network | ||
is up and stops sending as soon as network is down (uses sd-network). | ||
It reads from journal and forwards to network one by one. It does not | ||
use any extra disk space. systemd-netlogd supports UDP, TCP, TLS and DTLS | ||
(Datagram Transport Layer Security RFC 6012). | ||
|
||
BuildRequires: gcc | ||
BuildRequires: libcap-devel | ||
|
@@ -30,6 +33,7 @@ BuildRequires: python3-lxml | |
BuildRequires: git | ||
BuildRequires: meson >= 0.43 | ||
BuildRequires: systemd-devel | ||
BuildRequires: openssl-devel | ||
|
||
%prep | ||
%autosetup | ||
|
@@ -47,11 +51,11 @@ pushd build | |
popd | ||
|
||
%files | ||
%{_sysconfdir}/systemd/system/systemd-netlogd.conf | ||
%{_sysconfdir}/systemd/system/netlogd.conf | ||
%{_sysconfdir}/systemd/system/systemd-netlogd.service | ||
/lib/systemd/systemd-netlogd | ||
%{_mandir}/man1/systemd-netlogd.1* | ||
%{_mandir}/man8/systemd-netlogd.8* | ||
|
||
%changelog | ||
* Mon May 21 2018 Susant Sahani <[email protected]> - 1.1 | ||
* Tue May 14 2024 Susant Sahani <[email protected]> - 1.4 | ||
- Initial spec |