2012-02-15 20:01:07 +01:00
|
|
|
Index: libvirt-0.9.10/daemon/libvirtd.conf
|
2008-09-01 17:06:07 +02:00
|
|
|
===================================================================
|
2012-02-15 20:01:07 +01:00
|
|
|
--- libvirt-0.9.10.orig/daemon/libvirtd.conf
|
|
|
|
+++ libvirt-0.9.10/daemon/libvirtd.conf
|
2009-01-29 01:42:42 +01:00
|
|
|
@@ -18,8 +18,8 @@
|
2008-09-01 17:06:07 +02:00
|
|
|
# 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
|
2009-01-29 01:42:42 +01:00
|
|
|
@@ -53,11 +53,9 @@
|
2008-09-01 17:06:07 +02:00
|
|
|
|
|
|
|
# Flag toggling mDNS advertizement of the libvirt service.
|
|
|
|
#
|
|
|
|
-# Alternatively can disable for all services on a host by
|
|
|
|
-# stopping the Avahi daemon
|
|
|
|
-#
|
|
|
|
-# This is enabled by default, uncomment this to disable it
|
|
|
|
-#mdns_adv = 0
|
|
|
|
+# Disabled by default. To enable, ensure the Avahi daemon is
|
|
|
|
+# running and uncomment this flag.
|
|
|
|
+#mdns_adv = 1
|
|
|
|
|
|
|
|
# Override the default mDNS advertizement name. This must be
|
|
|
|
# unique on the immediate broadcast network.
|
2012-02-15 20:01:07 +01:00
|
|
|
Index: libvirt-0.9.10/daemon/libvirtd.c
|
2008-09-01 17:06:07 +02:00
|
|
|
===================================================================
|
2012-02-15 20:01:07 +01:00
|
|
|
--- libvirt-0.9.10.orig/daemon/libvirtd.c
|
|
|
|
+++ libvirt-0.9.10/daemon/libvirtd.c
|
2012-01-09 23:51:36 +01:00
|
|
|
@@ -871,7 +871,7 @@ daemonConfigNew(bool privileged ATTRIBUT
|
2011-07-05 22:25:50 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-09-01 17:06:07 +02:00
|
|
|
|
2011-07-05 22:25:50 +02:00
|
|
|
- data->listen_tls = 1;
|
|
|
|
+ data->listen_tls = 0;
|
|
|
|
data->listen_tcp = 0;
|
|
|
|
|
|
|
|
if (!(data->tls_port = strdup(LIBVIRTD_TLS_PORT)))
|
2012-01-09 23:51:36 +01:00
|
|
|
@@ -908,7 +908,7 @@ daemonConfigNew(bool privileged ATTRIBUT
|
2008-09-01 17:06:07 +02:00
|
|
|
#endif
|
2011-07-05 22:25:50 +02:00
|
|
|
data->auth_tls = REMOTE_AUTH_NONE;
|
2008-09-01 17:06:07 +02:00
|
|
|
|
2011-07-05 22:25:50 +02:00
|
|
|
- data->mdns_adv = 1;
|
|
|
|
+ data->mdns_adv = 0;
|
2008-09-01 17:06:07 +02:00
|
|
|
|
2011-07-05 22:25:50 +02:00
|
|
|
data->min_workers = 5;
|
|
|
|
data->max_workers = 20;
|