mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-06 18:09:44 +03:00
package/sysklogd: fix daemon paths in systemd unit files
They are at /sbin, not /usr/sbin. Signed-off-by: Carlos Santos <unixmania@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
6617fe098d
commit
a5188824ce
@@ -2,7 +2,7 @@
|
||||
Description=Kernel Log Daemon
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/klogd -n
|
||||
ExecStart=/sbin/klogd -n
|
||||
StandardOutput=null
|
||||
Restart=on-failure
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ Requires=syslog.socket
|
||||
Wants=klogd.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/syslogd -m 0 -n
|
||||
ExecStart=/sbin/syslogd -m 0 -n
|
||||
StandardOutput=null
|
||||
Restart=on-failure
|
||||
|
||||
|
||||
Reference in New Issue
Block a user