39bfc34504
* Improved save/restore support * Option to view and change disk cache mode * Configurable VNC keygrab sequence (Michal Novotny) - Update to virtinst 0.500.4 * New virt-install --console option for specifying virtio console device * New virt-install --channel option for specifying guest communication channel * New virt-install --boot option. Allows setting post-install boot order, direct kernel/initrd boot, and enabling boot device menu. * New virt-install --initrd-inject option, which enables installation using a _local_ kickstart file (Colin Walters) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=37
13 lines
532 B
Diff
13 lines
532 B
Diff
Index: virt-manager-0.8.5/src/virtManager/engine.py
|
|
===================================================================
|
|
--- virt-manager-0.8.5.orig/src/virtManager/engine.py
|
|
+++ virt-manager-0.8.5/src/virtManager/engine.py
|
|
@@ -71,6 +71,7 @@ def default_uri():
|
|
os.path.exists("/usr/bin/qemu") or
|
|
os.path.exists("/usr/bin/qemu-kvm") or
|
|
os.path.exists("/usr/bin/kvm") or
|
|
+ os.path.exists("/dev/kvm") or
|
|
os.path.exists("/usr/libexec/qemu-kvm")):
|
|
tryuri = "qemu:///system"
|
|
|