2cdc10fadb
- Update to libvirt 6.8.0 - jsc#SLE-12684, jsc#SLE-15861 - bsc#1174955 (CVE-2020-15708) - bsc#1177155 (CVE-2020-25637) - Many incremental improvements and bug fixes, see https://libvirt.org/news.html - Dropped patches: 2ad009ea-qemu-check-modules-dir.patch, 8abd1ffe-qemu-tolerate-non-existent-files.patch, 4a72b76b-qemu-namespace-memleak-fix.patch OBS-URL: https://build.opensuse.org/request/show/839020 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=845
34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
Disable TLS by default
|
|
|
|
On SUSE distros, the default is for libvirtd to listen only on the
|
|
Unix Domain Socket. The libvirt client still provides remote access
|
|
via a SSH tunnel.
|
|
Index: libvirt-6.8.0/src/remote/remote_daemon_config.c
|
|
===================================================================
|
|
--- libvirt-6.8.0.orig/src/remote/remote_daemon_config.c
|
|
+++ libvirt-6.8.0/src/remote/remote_daemon_config.c
|
|
@@ -99,7 +99,7 @@ daemonConfigNew(bool privileged G_GNUC_U
|
|
|
|
#ifdef WITH_IP
|
|
# ifdef LIBVIRTD
|
|
- data->listen_tls = true; /* Only honoured if --listen is set */
|
|
+ data->listen_tls = false; /* Only honoured if --listen is set */
|
|
# else /* ! LIBVIRTD */
|
|
data->listen_tls = false; /* Always honoured, --listen doesn't exist. */
|
|
# endif /* ! LIBVIRTD */
|
|
Index: libvirt-6.8.0/src/remote/libvirtd.conf.in
|
|
===================================================================
|
|
--- libvirt-6.8.0.orig/src/remote/libvirtd.conf.in
|
|
+++ libvirt-6.8.0/src/remote/libvirtd.conf.in
|
|
@@ -17,8 +17,8 @@
|
|
# It is necessary to setup a CA and issue server certificates before
|
|
# using this capability.
|
|
#
|
|
-# This is enabled by default, uncomment this to disable it
|
|
-#listen_tls = 0
|
|
+# This is disabled by default, uncomment this to enable it
|
|
+#listen_tls = 1
|
|
|
|
# Listen for unencrypted TCP connections on the public TCP/IP port.
|
|
# NB, must pass the --listen flag to the @DAEMON_NAME@ process for this to
|