Package: release.debian.org Severity: normal Tags: trixie User: [email protected] Usertags: pu Control: affects -1 + src:syslog-ng
Hi RMs, [ Reason ] Close to the Trixie release writing out log statistics and on a too frequent interval was turned on in syslog-ng. Unfortunately these statistics are also written out if there were no log messages received, i.e. there were nothing else to log. [ Impact ] This writes out log events every second, filling up disks of small VMs for example. This was reverted for Sid, but Trixie needs this package update. [ Tests ] Local compile tests, I don't have a box to test this at the moment. But the fix is very trivial. [ Risks ] I do not know any. [ Checklist ] [x] *all* changes are documents in the d/changelog [x] I reviewed all changes and I approve them [x] attach debdiff against the package in trixie [x] the issue is verified as fixed in unstable Thanks for considering, Laszlo/GCS
diff -Nru syslog-ng-4.8.1/debian/changelog syslog-ng-4.8.1/debian/changelog --- syslog-ng-4.8.1/debian/changelog 2025-05-10 13:12:49.000000000 +0200 +++ syslog-ng-4.8.1/debian/changelog 2025-10-12 12:39:32.000000000 +0200 @@ -1,3 +1,9 @@ +syslog-ng (4.8.1-5+deb13u1) trixie; urgency=medium + + * Turn off writing log statistics (closes: #1110329). + + -- Laszlo Boszormenyi (GCS) <[email protected]> Sun, 12 Oct 2025 12:39:32 +0200 + syslog-ng (4.8.1-5) unstable; urgency=medium * Fix transport accepting incorrect wildcards diff -Nru syslog-ng-4.8.1/debian/syslog-ng.conf syslog-ng-4.8.1/debian/syslog-ng.conf --- syslog-ng-4.8.1/debian/syslog-ng.conf 2025-05-10 13:12:49.000000000 +0200 +++ syslog-ng-4.8.1/debian/syslog-ng.conf 2025-10-12 12:39:32.000000000 +0200 @@ -7,7 +7,7 @@ # First, set some global options. options { chain_hostnames(off); flush_lines(0); use_dns(no); use_fqdn(no); dns_cache(no); owner("root"); group("adm"); perm(0640); - stats(freq(1)); + stats(freq(0)); bad_hostname("^gconfd$"); };

