f059e04d7b
VM's - Don't automatically connect to xen in the virt-manager.desktop file. This results in an error dialog when only KVM is installed - bnc#588215 - virt-manager/vminstall can't install new KVM Guests - bnc#585990 - Fix add/remove device for active Xen guests. virtman-device-flags.diff - cleanup spec * norootforbuild * sort TAGS - some rpmlint stuff * configfile existing interfaces. Provision new bridge, bond, and vlan devices. OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=18
15 lines
563 B
Diff
15 lines
563 B
Diff
Index: virt-manager-0.8.3/src/virt-manager.py.in
|
|
===================================================================
|
|
--- virt-manager-0.8.3.orig/src/virt-manager.py.in
|
|
+++ virt-manager-0.8.3/src/virt-manager.py.in
|
|
@@ -209,7 +209,8 @@ def default_uri():
|
|
tryuri = "xen:///"
|
|
elif (os.path.exists("/usr/bin/qemu") or
|
|
os.path.exists("/usr/bin/qemu-kvm") or
|
|
- os.path.exists("/usr/bin/kvm")):
|
|
+ os.path.exists("/usr/bin/kvm") or
|
|
+ os.path.exists("/dev/kvm") ):
|
|
tryuri = "qemu:///system"
|
|
|
|
return tryuri
|