virt-manager/virtman-kvm.diff
Charles Arnold 249172acaf - bnc#592538 - VM status is recognized as "Shutoff" in virt-manager
and virt-viewer after creating a snapshot.

- Update to virt-manager 0.8.4
  * Import install option: create a VM using an existing OS image
  * Support multiple boot devices and boot order
  * Watchdog device support
  * Enable setting a human readable VM description.
  * Option to manually specifying a bridge name, if bridge isn't
    detected
- Update to virtinst 0.500.3
  * virt-install: New --watchdog option: configure a virtual
    watchdog dev
  * virt-install: New --soundhw option: More flexible sound
    configuration deprecates --sound, though back compat is
    maintained
  * virt-install: New --security option: configure VM security
    driver
  * virt-install: New --description option: set a human readable
    desc
  * Better OS defaults: Use <video> VGA and <sound> AC97 if
    support

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=23
2010-04-02 16:06:48 +00:00

15 lines
570 B
Diff

Index: virt-manager-0.8.4/src/virtManager/engine.py
===================================================================
--- virt-manager-0.8.4.orig/src/virtManager/engine.py
+++ virt-manager-0.8.4/src/virtManager/engine.py
@@ -69,7 +69,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