2014-05-22 17:22:21 +02:00
|
|
|
From 02c2d2fcb3c445082a91807ab277a7c85d0a38db Mon Sep 17 00:00:00 2001
|
|
|
|
From: =?UTF-8?q?C=C3=A9dric=20Bosdonnat?= <cedric.bosdonnat@free.fr>
|
|
|
|
Date: Tue, 20 May 2014 17:14:27 +0200
|
|
|
|
Subject: [PATCH] Default connection URI if libvirt-daemon-driver-lxc is
|
|
|
|
installed
|
|
|
|
|
|
|
|
The default URI is set to lxc:/// if libvirt's lxc driver is installed
|
|
|
|
locally, but only if there is no kvm/xen URI to default to.
|
|
|
|
---
|
|
|
|
virtManager/connect.py | 4 ++++
|
|
|
|
2 files changed, 11 insertions(+), 3 deletions(-)
|
|
|
|
|
2014-10-29 18:03:15 +01:00
|
|
|
Index: virt-manager-1.1.0/virtManager/connect.py
|
2014-05-30 01:00:52 +02:00
|
|
|
===================================================================
|
2014-10-29 18:03:15 +01:00
|
|
|
--- virt-manager-1.1.0.orig/virtManager/connect.py
|
|
|
|
+++ virt-manager-1.1.0/virtManager/connect.py
|
|
|
|
@@ -115,6 +115,10 @@ class vmmConnect(vmmGObjectUI):
|
2014-05-22 17:22:21 +02:00
|
|
|
return "qemu:///system"
|
|
|
|
else:
|
|
|
|
return "qemu:///session"
|
|
|
|
+
|
|
|
|
+ if (os.path.exists("/usr/lib/libvirt/libvirt_lxc") or
|
|
|
|
+ os.path.exists("/usr/lib64/libvirt/libvirt_lxc")):
|
|
|
|
+ return "lxc:///"
|
|
|
|
return None
|
|
|
|
|
|
|
|
def cancel(self, ignore1=None, ignore2=None):
|