49fa466c51
- LXC improvements - S390 architecture improvements - Power architecture improvements - large Coverity report cleanups and associated bug fixes - virTypedParams* APIs to help with those data structures - libxenlight driver improvements - Drop upstream patches: 68e7bc45-libxl-link-fix.patch, 462a6962-script-fixes1.patch, cb854b8f-script-fixes2.patch, 5ec4b22b-script-fixes3.patch, a1fd56cb-script-fixes4.patch, 66ff2ddc-virtlockd-systemd-file-perms.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=242
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
Index: libvirt-1.0.2/daemon/libvirtd.conf
|
|
===================================================================
|
|
--- libvirt-1.0.2.orig/daemon/libvirtd.conf
|
|
+++ libvirt-1.0.2/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.0.2/daemon/libvirtd-config.c
|
|
===================================================================
|
|
--- libvirt-1.0.2.orig/daemon/libvirtd-config.c
|
|
+++ libvirt-1.0.2/daemon/libvirtd-config.c
|
|
@@ -233,7 +233,7 @@ daemonConfigNew(bool privileged ATTRIBUT
|
|
return NULL;
|
|
}
|
|
|
|
- data->listen_tls = 1;
|
|
+ data->listen_tls = 0;
|
|
data->listen_tcp = 0;
|
|
|
|
if (!(data->tls_port = strdup(LIBVIRTD_TLS_PORT)))
|