systemd/module-setup.sh: turn off RateLimit for the journal

master
Harald Hoyer 2012-11-26 13:49:19 +01:00
parent 0fb7b847c5
commit 528ae4f46c
1 changed files with 9 additions and 0 deletions

View File

@ -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"


}