From 10de5b2e5fb0b0b928561f8e6f1eb636f836905a Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Tue, 19 Aug 2025 14:15:34 +0200 Subject: [PATCH] Update customizable_post_install.sh --- scripts/post_install/customizable_post_install.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/scripts/post_install/customizable_post_install.sh b/scripts/post_install/customizable_post_install.sh index 1c6163a..139b736 100644 --- a/scripts/post_install/customizable_post_install.sh +++ b/scripts/post_install/customizable_post_install.sh @@ -228,14 +228,13 @@ optimize_journald() { Storage=persistent # Don't split Journald logs by user SplitMode=none -# Disable rate limits -RateLimitInterval=0 -RateLimitIntervalSec=0 -RateLimitBurst=0 +# Reasonable rate limits (evita spam en kernel/auditd) +RateLimitIntervalSec=30s +RateLimitBurst=1000 # Disable Journald forwarding to syslog ForwardToSyslog=no -# Journald forwarding to wall /var/log/kern.log -ForwardToWall=yes +# Don't forward to wall (para evitar mensajes en terminales) +ForwardToWall=no # Disable signing of the logs, save cpu resources Seal=no Compress=yes