63ab429ae8
* Right click in the manager window operates on the clicked row, NOT the last selected row. This could cause an admin to accidentally shut down the wrong machine. * Running virt-manager on a new machine / user account no longer produces a traceback. * Allow ejecting and connecting floppy media - First time running virt-manager throws exception in engine.py add_connection(). virtman-autoconnect.diff - Update to virt-manager version 0.8.1 * VM Migration wizard, exposing various migration options * Enumerate CDROM and bridge devices on remote connections * Can once again list multiple graphs in main manager window (Jon Nordby) * Support disabling dhcp (Michal Novotny), and specifying 'routed' type for new virtual networks * Support storage pool source enumeration for LVM, NFS, and SCSI * Allow changing VM ACPI, APIC, clock offset, individual vcpu pinning, and video model (vga, cirrus, etc.) * Many improvements and bugfixes - bnc#552785 - virt-manager cannot connect to xend when started from an ordinary user's X session virtman-desktop.diff - bnc#553633 - Update breaks menu access keys in virt-viewer and still misses some key sequences. This is a SLE10 bug fixed for the virt-manager viewer in all versions. virtman-keycombo.diff - Use "graphics listen" for vnc connection (bnc#436629) - Remove unsupported SCSI disk option (bnc#464293) - Change cdrom start node to hdc instead of hdb (bnc#376935) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=12
15 lines
563 B
Diff
15 lines
563 B
Diff
Index: virt-manager-0.8.2/src/virt-manager.py.in
|
|
===================================================================
|
|
--- virt-manager-0.8.2.orig/src/virt-manager.py.in
|
|
+++ virt-manager-0.8.2/src/virt-manager.py.in
|
|
@@ -198,7 +198,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
|