mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
cc5311e730
If a systemd socket uses /var/run in its path, systemd prints a warning at runtime [ 15.139976] systemd[1]: /usr/lib/systemd/system/virtlockd.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-sock → /run/libvirt/virtlockd-sock; please update the unit file accordingly. This minimal change updates the socket unit files to honour the $runstatedir path. There's no functional change by default yet since both expressions expand to the same value. Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
11 lines
188 B
SYSTEMD
11 lines
188 B
SYSTEMD
[Unit]
|
|
Description=Virtual machine log manager socket
|
|
Before=libvirtd.service
|
|
|
|
[Socket]
|
|
ListenStream=@runstatedir@/libvirt/virtlogd-sock
|
|
SocketMode=0600
|
|
|
|
[Install]
|
|
WantedBy=sockets.target
|