diff options
author | 2015-11-17 14:01:20 +0100 | |
---|---|---|
committer | 2015-11-17 17:32:49 +0100 | |
commit | d1fcdcd87a4f0ffebfc98f404a7eae477dc3fd86 (patch) | |
tree | 08899c3b9db7b757f0827fff74bcf71e0c50dc14 /sysctl.d | |
parent | Merge pull request #1920 from teg/networkd-fixes (diff) | |
download | systemd-d1fcdcd87a4f0ffebfc98f404a7eae477dc3fd86.tar.gz systemd-d1fcdcd87a4f0ffebfc98f404a7eae477dc3fd86.tar.bz2 systemd-d1fcdcd87a4f0ffebfc98f404a7eae477dc3fd86.zip |
sysctl: use %P instead of %p in core pattern
That way we'll get the PID on the host, rather than the one in a PID
namespace. Which should make the coredump handler less confusing.
Fixes #1930.
Diffstat (limited to 'sysctl.d')
-rw-r--r-- | sysctl.d/50-coredump.conf.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysctl.d/50-coredump.conf.in b/sysctl.d/50-coredump.conf.in index d5f600ef4..5e04c821b 100644 --- a/sysctl.d/50-coredump.conf.in +++ b/sysctl.d/50-coredump.conf.in @@ -9,4 +9,4 @@ # and systemd-coredump(8) and core(5) for the explanation of the # setting below. -kernel.core_pattern=|@rootlibexecdir@/systemd-coredump %p %u %g %s %t %e +kernel.core_pattern=|@rootlibexecdir@/systemd-coredump %P %u %g %s %t %e |