forked from pool/libvirt
326f0f1ce2
- Introduce virDomainMigrate*CompressionCache APIs - Introduce virDomainGetJobStats API - Add basic support for VDI images - Introduce API virNodeDeviceLookupSCSIHostByWWN - Various locking improvements - Many incremental improvements and bug fixes, see http://libvirt.org/news.html - Drop upstream patches: a6b8bae5-python-generator-fix1.patch, 25ea8e47-python-generator-fix2.patch, 567779e5-libxl-default-disk-backend.patch - Fix path to qemu-bridge-helper in libvirt-qemu apparmor profile Modified install-apparmor-profiles.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=252
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
Index: libvirt-1.0.3/daemon/libvirtd.conf
|
|
===================================================================
|
|
--- libvirt-1.0.3.orig/daemon/libvirtd.conf
|
|
+++ libvirt-1.0.3/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.3/daemon/libvirtd-config.c
|
|
===================================================================
|
|
--- libvirt-1.0.3.orig/daemon/libvirtd-config.c
|
|
+++ libvirt-1.0.3/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)))
|