d389fe33bc
* Enable adding virtio-scsi disks (Chen Hanxiao) * Support security auto-relabel setting (Martin Kletzander) * Support disk iotune settings (David Shane Holden) * Support 'reset' as a reboot option (John Doyle) * Bug fixes and minor improvements OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=115
13 lines
532 B
Diff
13 lines
532 B
Diff
Index: virt-manager-0.9.5/src/virtManager/engine.py
|
|
===================================================================
|
|
--- virt-manager-0.9.5.orig/src/virtManager/engine.py
|
|
+++ virt-manager-0.9.5/src/virtManager/engine.py
|
|
@@ -58,6 +58,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"
|
|
|