sysklogd/syslogd.service.in
Joachim Wiberg c82c004de7 syslogd.service: KillMode=process is not recommended, drop
The default 'control-group' ensures all processes started by sysklogd
are stopped when the service is stopped, this is what we want.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2023-04-22 07:40:24 +02:00

16 lines
352 B
SYSTEMD

[Unit]
Description=System Logging Service
Documentation=man:syslogd
Documentation=man:syslog.conf
Requires=syslog.socket
[Service]
EnvironmentFile=-@SYSCONFDIR@/default/syslogd
ExecStart=@SBINDIR@/syslogd -F -p /run/systemd/journal/syslog $SYSLOGD_OPTS
StandardOutput=null
Restart=on-failure
[Install]
WantedBy=multi-user.target
Alias=syslog.service