[-]
[+]
|
Changed |
libvirt.changes
|
|
[-]
[+]
|
Changed |
libvirt.spec
^
|
|
[-]
[+]
|
Added |
libvirtd-defaults-0.9.3.patch
^
|
@@ -0,0 +1,52 @@
+Index: libvirt-0.9.0/daemon/libvirtd.conf
+===================================================================
+--- libvirt-0.9.0.orig/daemon/libvirtd.conf
++++ libvirt-0.9.0/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
+@@ -53,11 +53,9 @@
+
+ # 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.
+Index: libvirt-0.9.3/daemon/libvirtd.c
+===================================================================
+--- libvirt-0.9.3/daemon/libvirtd.c.orig 2011-07-04 03:21:27.000000000 +0200
++++ libvirt-0.9.3/daemon/libvirtd.c 2011-07-08 21:47:18.553145124 +0200
+@@ -897,7 +897,7 @@
+ return NULL;
+ }
+
+- data->listen_tls = 1;
++ data->listen_tls = 0;
+ data->listen_tcp = 0;
+
+ if (!(data->tls_port = strdup(LIBVIRTD_TLS_PORT)))
+@@ -934,7 +934,7 @@
+ #endif
+ data->auth_tls = REMOTE_AUTH_NONE;
+
+- data->mdns_adv = 1;
++ data->mdns_adv = 0;
+
+ data->min_workers = 5;
+ data->max_workers = 20;
|
[-]
[+]
|
Deleted |
libvirtd-defaults.patch
^
|
@@ -1,52 +0,0 @@
-Index: libvirt-0.9.0/daemon/libvirtd.conf
-===================================================================
---- libvirt-0.9.0.orig/daemon/libvirtd.conf
-+++ libvirt-0.9.0/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
-@@ -53,11 +53,9 @@
-
- # 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.
-Index: libvirt-0.9.0/daemon/libvirtd.c
-===================================================================
---- libvirt-0.9.0.orig/daemon/libvirtd.c
-+++ libvirt-0.9.0/daemon/libvirtd.c
-@@ -148,7 +148,7 @@ static int sigwrite = -1; /* Signa
- static int ipsock = 0; /* -l Listen for TCP/IP */
-
- /* Defaults for configuration file elements */
--static int listen_tls = 1;
-+static int listen_tls = 0;
- static int listen_tcp = 0;
- static char *listen_addr = (char *) LIBVIRTD_LISTEN_ADDR;
- static char *tls_port = (char *) LIBVIRTD_TLS_PORT;
-@@ -170,7 +170,7 @@ static int auth_tcp = REMOTE_AUTH_NONE;
- #endif
- static int auth_tls = REMOTE_AUTH_NONE;
-
--static int mdns_adv = 1;
-+static int mdns_adv = 0;
- static char *mdns_name = NULL;
-
- static int tls_no_verify_certificate = 0;
|
|
Changed |
libvirt-0.9.3.tar.bz2
^
|