From c8e053fbe4e7182d88e25477dced2c717f33fdfa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 17 May 2018 17:08:31 +0200 Subject: [PATCH] man: fix ProcessSizeMax= description, describe how to disable coredumps What the man page said was different than what the code did. save_external_coredump() will store the core temporarily for backtrace generation, and will delete if afterwards if it is too large. So to disable processing, it's necessary to both set Storage=none/Storage=journal+JournalSizeMax=0/Storage=external+ExternalSizeMax=0 and ProcessSizeMax=0. This updates the man page to reflect the code. The man pages are extended to describe that Storage=none + ProcessSizeMax=0 is the simplest way to disable coredump processing. All the storage and processing options make this quite complicated, so let's add a copy-and-pasteable example of how to disable coredump. Doing it through coredump.conf has the advantage that we still log, and the effect is immediate, unlike masking the sysconf file. Fixes #8788. --- man/coredump.conf.xml | 10 +++++++--- man/systemd-coredump.xml | 10 ++++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/man/coredump.conf.xml b/man/coredump.conf.xml index 048bbc36370..49debb219a3 100644 --- a/man/coredump.conf.xml +++ b/man/coredump.conf.xml @@ -74,7 +74,7 @@ Controls where to store cores. One of none, external, and journal. When - none, the core dumps will be logged (including the backtrace if + none, the core dumps may be logged (including the backtrace if possible), but not stored permanently. When external (the default), cores will be stored in /var/lib/systemd/coredump/. When journal, cores will be stored in the journal and rotated @@ -101,8 +101,12 @@ The maximum size in bytes of a core which will be processed. Core dumps exceeding this size - will be logged, but the backtrace will not be generated - and the core will not be stored. + may be stored, but the backtrace will not be generated. + + + Setting Storage=none and ProcessSizeMax=0 + disables all coredump handling except for a log entry. + diff --git a/man/systemd-coredump.xml b/man/systemd-coredump.xml index 6c3078143f3..6fba19c2235 100644 --- a/man/systemd-coredump.xml +++ b/man/systemd-coredump.xml @@ -128,6 +128,16 @@ core dumps and files can be set in files /etc/systemd/coredump.conf and snippets mentioned above. In addition the storage time of core dump files is restricted by systemd-tmpfiles, corresponding settings are by default in /usr/lib/tmpfiles.d/systemd.conf. + + + Disabling coredump processing + + To disable potentially resource-intensive processing by systemd-coredump, + set Storage=none +ProcessSizeMax=0 in + coredump.conf5. + + -- 2.39.2