From 9a9f6af09f023235a92dfd85f4405e05926de829 Mon Sep 17 00:00:00 2001 From: Jiri Vymazal Date: Feb 20 2017 09:27:04 +0000 Subject: * Mon Feb 20 2017 Jiri Vymazal - 8.24.0-6 - fixed typo in chdir location resolves: rhbz#1422542 - updated one more directive in default config resolves: rhbz#1419625 --- diff --git a/rsyslog-8.24.0-missing-chdir-w-chroot.patch b/rsyslog-8.24.0-missing-chdir-w-chroot.patch index fbed5f2..e67e13f 100644 --- a/rsyslog-8.24.0-missing-chdir-w-chroot.patch +++ b/rsyslog-8.24.0-missing-chdir-w-chroot.patch @@ -6,7 +6,7 @@ index c099705..12b037f 100644 perror("chroot"); exit(1); } -+ if(chdir("\\") != 0) { ++ if(chdir("/") != 0) { + perror("chdir"); + exit(1); + } diff --git a/rsyslog.conf b/rsyslog.conf index 0df42af..86ade8c 100644 --- a/rsyslog.conf +++ b/rsyslog.conf @@ -27,7 +27,7 @@ module(load="imjournal" # provides access to the systemd journal #### GLOBAL DIRECTIVES #### # Where to place auxiliary files -$WorkDirectory /var/lib/rsyslog +global(workDirectory="/var/lib/rsyslog") # Use default timestamp format module(load="builtin:omfile" Template="RSYSLOG_TraditionalFileFormat") diff --git a/rsyslog.spec b/rsyslog.spec index d26ee9f..ffd8a77 100644 --- a/rsyslog.spec +++ b/rsyslog.spec @@ -16,7 +16,7 @@ Summary: Enhanced system logging and kernel message trapping daemon Name: rsyslog Version: 8.24.0 -Release: 5%{?dist} +Release: 6%{?dist} License: (GPLv3+ and ASL 2.0) Group: System Environment/Daemons URL: http://www.rsyslog.com/ @@ -537,6 +537,12 @@ done %{_libdir}/rsyslog/omkafka.so %changelog +* Mon Feb 20 2017 Jiri Vymazal - 8.24.0-6 +- fixed typo in chdir location + resolves: rhbz#1422542 +- updated one more directive in default config + resolves: rhbz#1419625 + * Fri Feb 17 2017 Jiri Vymazal - 8.24.0-5 - new default config, using RainerScript wherever possible resolves: rhbz#1419625