- update to 5.6.2 (v5-stable) with following bugfixes:

* compile failed on systems without epoll_create1()
    Thanks to David Hill for providing a fix.
  * atomic increment for msg object may not work correct on
    all platforms. Thanks to Chris Metcalf for the patch
  * replacements for atomic operations for non-int sized types
    had problems. At least one instance of that problem could
    potentially lead to abort (inside omfile).
- Increased mark frequency in rsyslog.conf to 1 hour
- Enabled duplicate message reduction in rsyslog.conf to catch
  at least buggy programs running amok and writting same message
  zillion times until the disk gets out of space (bnc#656197).

OBS-URL: https://build.opensuse.org/package/show/Base:System/rsyslog?expand=0&rev=30
This commit is contained in:
2010-12-03 17:02:09 +00:00
committed by Git OBS Bridge
parent 2b04459014
commit bbb8e3484a
5 changed files with 32 additions and 7 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b21acb9562879afdb690855b7f285af0bb2bef066d45c0d4917e27aafe1a91e2
size 1845324

3
rsyslog-5.6.2.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df96d0a1e31c79367b7c3ab29806515b2d5ea8acd2c184615897ea821506b118
size 1846314

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Fri Dec 3 16:49:41 UTC 2010 - mt@suse.de
- update to 5.6.2 (v5-stable) with following bugfixes:
* compile failed on systems without epoll_create1()
Thanks to David Hill for providing a fix.
* atomic increment for msg object may not work correct on
all platforms. Thanks to Chris Metcalf for the patch
* replacements for atomic operations for non-int sized types
had problems. At least one instance of that problem could
potentially lead to abort (inside omfile).
- Increased mark frequency in rsyslog.conf to 1 hour
- Enabled duplicate message reduction in rsyslog.conf to catch
at least buggy programs running amok and writting same message
zillion times until the disk gets out of space (bnc#656197).
-------------------------------------------------------------------
Mon Nov 29 10:32:58 CET 2010 - mt@suse.de

View File

@@ -19,8 +19,12 @@
# rsyslog v3: load input modules
# If you do not load inputs, nothing happens!
$ModLoad immark.so # provides --MARK-- message capability
$ModLoad immark.so # provides --MARK-- message capability (every 1 hour)
$MarkMessagePeriod 3600
$ModLoad imuxsock.so # provides support for local system logging (e.g. via logger command)
# reduce dupplicate log messages (last message repeated n times)
$RepeatedMsgReduction on
$ModLoad imklog.so # kernel logging (may be also provided by /sbin/klogd),
# see also http://www.rsyslog.com/doc-imklog.html.

View File

@@ -20,9 +20,9 @@
Name: rsyslog
Summary: The enhanced syslogd for Linux and Unix
Version: 5.6.1
%define upstream_version 5.6.1
Release: 1
Version: 5.6.2
%define upstream_version 5.6.2
Release: 0
# add %define build_with_relp 1 to enable relp on < 11.3, e.g.
# via <topadd>%define build_with_relp 1</topadd> in _link file.
%define with_relp 0%{?suse_version} >= 1130 || 0%{?build_with_relp:1}
@@ -49,6 +49,11 @@ BuildRequires: librelp-devel
# UDP spoof support
%if 0%{?suse_version} > 1130
BuildRequires: libnet-devel
#
#BuildRequires: systemd
#
# unresolvable: nothing provides fsck-with-dev-lock needed by systemd
#
%else
BuildRequires: libnet
%endif