debian: leverage built-in log rotation instead of logrotate

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg 2021-02-21 16:24:30 +01:00
parent 24f0fd36c4
commit e7194db01f
2 changed files with 2 additions and 2 deletions

1
debian/control vendored
View File

@ -13,7 +13,6 @@ Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, lsb-base (>= 3.0-6)
Provides: syslogd, linux-kernel-log-daemon, system-log-daemon
Conflicts: syslogd, linux-kernel-log-daemon, system-log-daemon
Recommends: logrotate
Description: system logging daemon
Continuation of the original syslog daemon for Linux, based on the *BSD
syslog daemon. Now with kernel logging and log rotation built-in. It

View File

@ -4,4 +4,5 @@
# Secure mode enabled, forwarding to remote servers allowed, disable
# with another '-s', logging from remote servers disallowed.
SYSLOGD_OPTS="-s"
# Default log rotation at 10 MiB, keeping 10 backlog copies.
SYSLOGD_OPTS="-s -r 10M:10"