kumquat-buildroot/package/sysklogd/syslogd.service
Joachim Wiberg f9fe509a01 package/sysklogd: allow customisation in systemd service
As is done with the init script, parse the system-level customisation
file, if it exists, from the systemd service unit, to allow users to
provide extra arguments passed to the daemon.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
[yann.morin.1998@free.fr; offload to its own commit]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021-01-24 10:20:57 +01:00

14 lines
258 B
Desktop File

[Unit]
Description=System Logging Service
Requires=syslog.socket
[Service]
EnvironmentFile=-/etc/default/syslogd
ExecStart=/sbin/syslogd -m 0 -F $SYSLOGD_ARGS
StandardOutput=null
Restart=on-failure
[Install]
WantedBy=multi-user.target
Alias=syslog.service