0e53c763a0
- CVE-2014-0028, CVE-2014-1447, CVE-2013-6458, CVE-2013-6457, CVE-2013-6436 - Many incremental improvements and bug fixes, see http://libvirt.org/news.html - Dropped upstream patches: 5e397d9c-test-fix-dbus-crash.patch, 78af457e-fix-virnettlscontexttest.patch, 9faf3f29-LXC-memtune.patch, f8c1cb90-CVE-2013-6436.patch, libxl-hvm-nic.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=342
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
Index: libvirt-1.2.1/daemon/libvirtd.conf
|
|
===================================================================
|
|
--- libvirt-1.2.1.orig/daemon/libvirtd.conf
|
|
+++ libvirt-1.2.1/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.2.1/daemon/libvirtd-config.c
|
|
===================================================================
|
|
--- libvirt-1.2.1.orig/daemon/libvirtd-config.c
|
|
+++ libvirt-1.2.1/daemon/libvirtd-config.c
|
|
@@ -222,7 +222,7 @@ daemonConfigNew(bool privileged ATTRIBUT
|
|
if (VIR_ALLOC(data) < 0)
|
|
return NULL;
|
|
|
|
- data->listen_tls = 1;
|
|
+ data->listen_tls = 0;
|
|
data->listen_tcp = 0;
|
|
|
|
if (VIR_STRDUP(data->tls_port, LIBVIRTD_TLS_PORT) < 0 ||
|