Package: logcheck
Version: 1.4.3
Severity: minor
Dear Maintainer,
In case logcheck encounters an error, an error msg is output containing a typo.
Excerpt:
"""
- verify that the logcheck user can read all
logfiles specified in;
/etc/logcheck/logcheck.logfiles
/etc/logcheck/logcheck.logfiled.d/*.logfiles
"""
-> "logfiled.d"
Please consider applying this patch to correct the typo in a script-wide,
consistent way:
--- /sbin/logcheck 2024-09-04 19:28:15.900501946 +0200
+++ /tmp/logcheck 2024-09-04 19:26:35.525111627 +0200
@@ -183,8 +183,8 @@
}
- verify that the logcheck user can read all
logfiles specified in;
- /etc/logcheck/logcheck.logfiles
- /etc/logcheck/logcheck.logfiles.d/*.logfiles
+ ${LOGFILES_LIST}
+ ${LOGFILES_LIST_D}*.logfiles
- check the system has enough space; (df -h output follows):
$(df -h 2>&1|| :)
- check the settings (environment follows):
Thank you.