mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
In commit 8862f21e (sysstat: 12.1.3 -> 12.1.6), sa_lib_dir was changed
from "${libdir}/sa" to "${libexecdir}/sa" to avoid problems with
multilib. However, the systemd unit file was not changed accordingly,
which lead to the following error when trying to start the service:
systemd[4698]: sysstat.service: Failed at step EXEC spawning
/usr/lib/sa/sa1: No such file or directory
(From OE-Core rev: 0fd691b9801b5313ff2e2c2cd5ca13fd50063235)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
177 B
Desktop File
13 lines
177 B
Desktop File
[Unit]
|
|
Description=Resets System Activity Logs
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
User=root
|
|
ExecStart=@LIBEXECDIR@/sa/sa1 --boot
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|