mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 18:23:32 +08:00
62c72c60b5
It's a bit nicer if we only write the sysctl core_pattern once the coredump socket is established, since it's the backend for the handler. Given the systemd-coredump.socket basically has no dependencies that run before it this should not really make things slower or so, it just removes the tiny window where core pattern is in effect that wants to connect to the backend socket but cannot. The status quo isn't terrible, and not too different in effect: either way, until the socket unit is up we won't process coredumps. It's mostly what kind of behaviour you get then: an error due to /bin/false being invoked, or an error because systemd-coredump can't connect to its socket. After this patch we'll exclusively see the former.
22 lines
617 B
SYSTEMD
22 lines
617 B
SYSTEMD
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# This file is part of systemd.
|
|
#
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
[Unit]
|
|
Description=Process Core Dump Socket
|
|
Documentation=man:systemd-coredump(8)
|
|
DefaultDependencies=no
|
|
Before=shutdown.target systemd-sysctl.service
|
|
Conflicts=shutdown.target
|
|
|
|
[Socket]
|
|
ListenSequentialPacket=/run/systemd/coredump
|
|
SocketMode=0600
|
|
Accept=yes
|
|
MaxConnections=16
|