From 2f036705f337f61cee5a3b4f570b023c3da29895 Mon Sep 17 00:00:00 2001 From: Xin LI Date: Fri, 29 Dec 2023 00:45:52 -0800 Subject: [PATCH] Document the two recent newsyslog(8) change (-c option and configuration option). --- RELNOTES | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/RELNOTES b/RELNOTES index 509cf36c070e..adb9ca67aa0c 100644 --- a/RELNOTES +++ b/RELNOTES @@ -10,6 +10,26 @@ newline. Entries should be separated by a newline. Changes to this file should not be MFCed. +61174ad88e33: + newsyslog(8) now supports specifying a global compression method directly + at the beginning of the newsyslog.conf file, which will make newsyslog(8) + to behave like the corresponding option was passed to the newly added + '-c' option. For example: + + none + +906748d208d3: + newsyslog(8) now accepts a new option, '-c' which overrides all historical + compression flags by treating their meaning as "treat the file as compressible" + rather than "compress the file with that specific method." + + The following choices are available: + * none: Do not compress, regardless of flag. + * legacy: Historical behavior (J=bzip2, X=xz, Y=zstd, Z=gzip). + * bzip2, xz, zstd, gzip: apply the specified compression method. + + We plan to change the default to 'none' in FreeBSD 15.0. + 1a878807006c: This commit added some statistics collection to the NFS-over-TLS code in the NFS server so that sysadmins can moditor usage.