From: Harald Hoyer Date: Mon, 26 Nov 2012 12:49:19 +0000 (+0100) Subject: systemd/module-setup.sh: turn off RateLimit for the journal X-Git-Tag: 025~45 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=528ae4f46cc080041b42bfdcb728fb7202a0b7d3;p=thirdparty%2Fdracut.git systemd/module-setup.sh: turn off RateLimit for the journal --- diff --git a/modules.d/98systemd/module-setup.sh b/modules.d/98systemd/module-setup.sh index 6e6bf0792..666485e7e 100755 --- a/modules.d/98systemd/module-setup.sh +++ b/modules.d/98systemd/module-setup.sh @@ -145,5 +145,14 @@ install() { inst_script "$moddir/service-to-run.sh" "${systemdutildir}/system-generators/service-to-run" inst_rules 99-systemd.rules + + # turn off RateLimit for journal + { + echo "[Journal]" + echo "RateLimitInterval=0" + echo "RateLimitBurst=0" + } >> "$initdir/etc/systemd/journald.conf" + + }