app-admin/sysklogd: Use reasonable defaults for syslogd

Respect logrotate USE flag again and inform users about new
built-in log rotation functionality.

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
Lars Wendler
2019-11-20 10:55:27 +01:00
parent ad4d69ab88
commit 0d4daf7b47
2 changed files with 23 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
# Config file for /etc/init.d/sysklogd
SYSLOGD="-m 0 -s -s -r 10M:10"
# send warnings and above to the console
KLOGD="-c 3 -2"

View File

@@ -36,7 +36,6 @@ src_prepare() {
src_configure() {
local myeconfargs=(
# we have logger from sys-apps/util-linux
$(use_with klogd)
$(use_with logger)
$(use_with systemd systemd $(systemd_get_systemunitdir))
@@ -51,8 +50,22 @@ src_install() {
doins syslog.conf
keepdir /etc/syslog.d
find "${ED}" -type f \( -name "*.a" -o -name "*.la" \) -delete || die
newinitd "${FILESDIR}"/sysklogd.rc8 sysklogd
newconfd "${FILESDIR}"/sysklogd.confd sysklogd
newconfd "${FILESDIR}"/sysklogd.confd2 sysklogd
if use logrotate ; then
insinto /etc/logrotate.d
newins "${FILESDIR}"/sysklogd.logrotate sysklogd
sed 's@ -r 10M:10@@' -i "${ED}"/etc/conf.d/sysklogd || die
fi
find "${ED}" -type f \( -name "*.a" -o -name "*.la" \) -delete || die
}
pkg_postinst() {
if ! use logrotate && [[ -n ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 2.0 ; then
elog "Starting with version 2.0 syslogd has built in log rotation"
elog "functionality that does no longer require a running cron daemon."
elog "So we no longer install any log rotation cron files for sysklogd."
fi
}