2016-01-12 21:36:29 +01:00
|
|
|
Index: virt-manager-1.3.2/virtManager/engine.py
|
|
|
|
===================================================================
|
|
|
|
--- virt-manager-1.3.2.orig/virtManager/engine.py
|
|
|
|
+++ virt-manager-1.3.2/virtManager/engine.py
|
|
|
|
@@ -257,9 +257,22 @@ class vmmEngine(vmmGObject):
|
2015-12-14 16:28:18 +01:00
|
|
|
|
|
|
|
def load_stored_uris(self):
|
|
|
|
uris = self.config.get_conn_uris() or []
|
2015-05-04 22:15:01 +02:00
|
|
|
+ tryuri = vmmConnect.default_uri()
|
2014-03-14 00:44:08 +01:00
|
|
|
+ found_uri = None
|
|
|
|
for uri in uris:
|
|
|
|
+ # If booted Xen, don't try connecting to local qemu
|
|
|
|
+ # Likewise if booted native, don't try connecting to local xen
|
|
|
|
+ if uri == 'xen:///' or uri == 'qemu:///system':
|
|
|
|
+ if tryuri and tryuri != uri:
|
|
|
|
+ logging.debug("Skipping %s because it is incompatible with local host", uri)
|
|
|
|
+ continue
|
|
|
|
+ found_uri = True
|
|
|
|
conn = self.make_conn(uri)
|
|
|
|
self.register_conn(conn, skip_config=True)
|
|
|
|
+ if tryuri and found_uri is None:
|
|
|
|
+ logging.debug("Didn't connect with anything, try default %s", tryuri)
|
|
|
|
+ conn = self.make_conn(tryuri)
|
|
|
|
+ self.register_conn(conn, skip_config=False)
|
|
|
|
|
|
|
|
def autostart_conns(self):
|
|
|
|
"""
|