794d4df5d5
implementation does not support libxl in Xen 4.2. - Update to libvirt 0.10.2 - network: define new API virNetworkUpdate - add support for QEmu sandbox support - blockjob: add virDomainBlockCommit - node_memory: Define the APIs to get/set memory parameters - list: Define new API virConnectListAllSecrets - list: Define new API virConnectListAllNWFilter - list: Define new API virConnectListAllNodeDevices - list: Define new API virConnectListAllInterfaces - list: Define new API virConnectListAllNetworks - list: Define new API virStoragePoolListAllVolumes - list: Define new API virStorageListAllStoragePools - parallels: add support of containers to the driver - Add PMSUSPENDED life cycle event - Add per-guest S3/S4 state configuration - qemu: Support for Block Device IO Limits OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=227
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
Index: libvirt-0.10.2/daemon/libvirtd.conf
|
|
===================================================================
|
|
--- libvirt-0.10.2.orig/daemon/libvirtd.conf
|
|
+++ libvirt-0.10.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-0.10.2/daemon/libvirtd-config.c
|
|
===================================================================
|
|
--- libvirt-0.10.2.orig/daemon/libvirtd-config.c
|
|
+++ libvirt-0.10.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)))
|