Warning, /plasma/drkonqi/src/coredump/launcher/drkonqi-coredump-launcher.socket is written in an unsupported language. File is not indexed.

0001 # SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0002 # SPDX-FileCopyrightText: 2021 Harald Sitter <sitter@kde.org>
0003 
0004 [Unit]
0005 Description=Socket to launch DrKonqi for a systemd-coredump crash
0006 DefaultDependencies=no
0007 
0008 [Socket]
0009 # This is a bit problematic. Technically the user should be able to set the runtime dir via env as well, but we need
0010 # a persistent location so the system-level service can talk to us :|
0011 ListenSequentialPacket=/run/user/%U/drkonqi-coredump-launcher
0012 SocketMode=0600
0013 Accept=yes
0014 # Disable trigger limit for the benefit of older systemds
0015 # TODO: remove in favor of PollLimitBurst mechanism once systemd 255 is in ubuntu LTS
0016 TriggerLimitBurst=0
0017 # NB: this effectively also limits how many concurrent drkonqis run!
0018 MaxConnections=16
0019 
0020 [Install]
0021 WantedBy=sockets.target
0022 # Prevents trigger-limit-hit failure state by restarting the unit (systemd 250[?])
0023 UpheldBy=sockets.target