mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 11:22:23 +00:00
meson: Fix libvirtd|virtproxyd socket prefixes
During the switch to meson, one of the patches mistakenly changed the runtime socket prefix for {libvirtd, virtproxyd} to "libvirtd-" from the original "libvirt-". Not to be mistaken with the systemd unit name which actually follows the daemon name, IOW the systemd unit name remains as e.g. "libvirtd.socket", but the actual unix socket created on the filesystem that the daemon binds to must be named "libvirt-sock" and not "libvirtd-sock". Fixes: dd4f2c73ad7f9fc0eae5325d5bf5786afd3a467e Signed-off-by: Erik Skultety <eskultet@redhat.com> Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
parent
b175de4e18
commit
a4a20cc34f
@ -184,7 +184,7 @@ if conf.has('WITH_REMOTE')
|
||||
'service': 'libvirtd',
|
||||
'service_in': files('libvirtd.service.in'),
|
||||
'name': 'Libvirt',
|
||||
'sockprefix': 'libvirtd',
|
||||
'sockprefix': 'libvirt',
|
||||
'sockets': [ 'main', 'ro', 'admin', 'tcp', 'tls' ],
|
||||
}
|
||||
|
||||
@ -218,7 +218,7 @@ if conf.has('WITH_REMOTE')
|
||||
'service': 'virtproxyd',
|
||||
'service_in': files('virtproxyd.service.in'),
|
||||
'name': 'Libvirt proxy',
|
||||
'sockprefix': 'libvirtd',
|
||||
'sockprefix': 'libvirt',
|
||||
'sockets': [ 'main', 'ro', 'admin', 'tcp', 'tls' ],
|
||||
'deps': libvirtd_socket_conflicts,
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user