summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2021-05-24 11:36:28 +0100
committerDaniel P. Berrangé <berrange@redhat.com>2021-06-18 17:13:15 +0100
commit038dabc2a37e58afbfe3172c128f30533e920157 (patch)
treee646ab412d29fefdb3c43b41f4a44d7e4197027f /meson_options.txt
parent05bd8db60b35b7706100d9cbbaeb13992965e0f2 (diff)
downloadlibvirt-038dabc2a37e58afbfe3172c128f30533e920157.tar.gz
remote: switch to auto-spawn modular daemons by default
When determining what socket path to connect to for a given URI we will - Connect to the driver specific daemon if its UNIX socket exists - Connect to libvirtd if its UNIX socket exists - If non-root, auto-spawn a daemon based on the default mode Historically the last point would result in spawning libvirtd, but with this change we now spawn a modular daemon. Remote client probing logic will pick a specific hypervisor daemon to connect to when the URI is NULL. Tested-by: Jim Fehlig <jfehlig@suse.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index d0f84dbfa6..859ed36b8f 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -63,7 +63,7 @@ option('qemu_user', type: 'string', value: '', description: 'username to run QEM
option('qemu_group', type: 'string', value: '', description: 'groupname to run QEMU system instance as')
option('qemu_moddir', type: 'string', value: '', description: 'set the directory where QEMU modules are located')
option('driver_remote', type: 'feature', value: 'auto', description: 'remote driver')
-option('remote_default_mode', type: 'combo', choices: ['legacy', 'direct'], value: 'legacy', description: 'remote driver default mode')
+option('remote_default_mode', type: 'combo', choices: ['legacy', 'direct'], value: 'direct', description: 'remote driver default mode')
option('driver_secrets', type: 'feature', value: 'auto', description: 'local secrets management driver')
option('driver_test', type: 'feature', value: 'auto', description: 'test driver')
option('driver_vbox', type: 'feature', value: 'auto', description: 'VirtualBox XPCOMC driver')