Make rsyslog-relp require librelp>= 1.9.0

resolves: rhbz#2124440
Reorder logrotate parameters to work with POSIXLY_CORRECT env var
  resolves: rhbz#2124488
This commit is contained in:
alakatos 2023-01-09 11:33:59 +01:00
parent 46c836e9d7
commit 9b1d2e0d33
2 changed files with 10 additions and 3 deletions

View File

@ -7,6 +7,6 @@
missingok
sharedscripts
postrotate
/usr/bin/systemctl kill -s HUP rsyslog.service >/dev/null 2>&1 || true
/usr/bin/systemctl -s HUP kill rsyslog.service >/dev/null 2>&1 || true
endscript
}

View File

@ -5,7 +5,7 @@
Summary: Enhanced system logging and kernel message trapping daemon
Name: rsyslog
Version: 8.2102.0
Release: 108%{?dist}
Release: 109%{?dist}
License: (GPLv3+ and ASL 2.0)
URL: http://www.rsyslog.com/
Source0: http://www.rsyslog.com/files/download/rsyslog/%{name}-%{version}.tar.gz
@ -120,7 +120,8 @@ BuildRequires: krb5-devel
%package relp
Summary: RELP protocol support for rsyslog
Requires: %name = %version-%release
BuildRequires: librelp-devel >= 1.2.16
Requires: librelp >= 1.9.0
BuildRequires: librelp-devel >= 1.9.0
%package gnutls
Summary: TLS protocol support for rsyslog via GnuTLS library
@ -551,6 +552,12 @@ done
%changelog
* Mon Jan 09 2023 Attila Lakatos <alakatos@redhat.com> - 8.2102.0-109
- Make rsyslog-relp require librelp>= 1.9.0
resolves: rhbz#2124440
- Reorder logrotate parameters to work with POSIXLY_CORRECT env var
resolves: rhbz#2124488
* Fri Jan 06 2023 Attila Lakatos <alakatos@redhat.com> - 8.2102.0-108
- Fix invalid memory adressing in imklog that could case abort
resolves: rhbz#2157659