]> git.ipfire.org Git - thirdparty/systemd.git/blame_incremental - units/syslog.socket
hashmap: always set key output argument of internal_hashmap_first_key_and_value()
[thirdparty/systemd.git] / units / syslog.socket
... / ...
CommitLineData
1# SPDX-License-Identifier: LGPL-2.1+
2#
3# This file is part of systemd.
4#
5# systemd is free software; you can redistribute it and/or modify it
6# under the terms of the GNU Lesser General Public License as published by
7# the Free Software Foundation; either version 2.1 of the License, or
8# (at your option) any later version.
9
10[Unit]
11Description=Syslog Socket
12Documentation=man:systemd.special(7)
13Documentation=https://www.freedesktop.org/wiki/Software/systemd/syslog
14DefaultDependencies=no
15Before=sockets.target
16
17# Don't allow logging until the very end
18Conflicts=shutdown.target
19Before=shutdown.target
20
21# Don't try to activate syslog.service if sysinit.target has failed.
22Conflicts=emergency.service
23Before=emergency.service
24
25[Socket]
26ListenDatagram=/run/systemd/journal/syslog
27SocketMode=0666
28PassCredentials=yes
29PassSecurity=yes
30ReceiveBuffer=8M
31
32# The default syslog implementation should make syslog.service a
33# symlink to itself, so that this socket activates the right actual
34# syslog service.
35#
36# Examples:
37#
38# /etc/systemd/system/syslog.service -> /lib/systemd/system/rsyslog.service
39# /etc/systemd/system/syslog.service -> /lib/systemd/system/syslog-ng.service
40#
41# Best way to achieve that is by adding this to your unit file
42# (i.e. to rsyslog.service or syslog-ng.service):
43#
44# [Install]
45# Alias=syslog.service
46#
47# See https://www.freedesktop.org/wiki/Software/systemd/syslog for details.