buildroot/package/sysklogd/syslogd.service
Carlos Santos 33642d8d95 package/sysklogd: fix installation path of the daemons
Use "--exec-prefix=/" to install syslogd and klogd at /sbin, as required
by the init scripts. This also ensures that the BusyBox counterparts are
not installed.

Update the systemd unit files, accordingly.

Signed-off-by: Carlos Santos <unixmania@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-03-15 22:55:47 +01:00

14 lines
226 B
Desktop File

[Unit]
Description=System Logging Service
Requires=syslog.socket
Wants=klogd.service
[Service]
ExecStart=/sbin/syslogd -m 0 -n
StandardOutput=null
Restart=on-failure
[Install]
WantedBy=multi-user.target
Alias=syslog.service