forked from pool/libvirt
5674459f46
- CVE-2013-2230: Fix crash when multiple event callbacks were registered f38c8185-CVE-2013-2230.patch bnc#827801 - Update to libvirt 1.1.0 - Extensible migration APIs - Add a policy kit access control driver - various improvements in the Xen and libxl drivers - improve networking support on BSD - agent based vCPU hotplug support - Many incremental improvements and bug fixes, see http://libvirt.org/news.html - Drop upstream patches: 244e0b8c-CVE-2013-2218.patch OBS-URL: https://build.opensuse.org/request/show/182783 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=282
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
Index: libvirt-1.1.0/daemon/libvirtd.conf
|
|
===================================================================
|
|
--- libvirt-1.1.0.orig/daemon/libvirtd.conf
|
|
+++ libvirt-1.1.0/daemon/libvirtd.conf
|
|
@@ -18,8 +18,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 libvirtd process for this to
|
|
Index: libvirt-1.1.0/daemon/libvirtd-config.c
|
|
===================================================================
|
|
--- libvirt-1.1.0.orig/daemon/libvirtd-config.c
|
|
+++ libvirt-1.1.0/daemon/libvirtd-config.c
|
|
@@ -225,7 +225,7 @@ daemonConfigNew(bool privileged ATTRIBUT
|
|
return NULL;
|
|
}
|
|
|
|
- data->listen_tls = 1;
|
|
+ data->listen_tls = 0;
|
|
data->listen_tcp = 0;
|
|
|
|
if (VIR_STRDUP(data->tls_port, LIBVIRTD_TLS_PORT) < 0 ||
|