virt-manager/virtman-netcat.diff
Charles Arnold 63ab429ae8 - Update to virt-manager version 0.8.2
* 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
2010-01-08 23:19:17 +00:00

14 lines
527 B
Diff

Index: virt-manager-0.8.2/src/virtManager/console.py
===================================================================
--- virt-manager-0.8.2.orig/src/virtManager/console.py
+++ virt-manager-0.8.2/src/virtManager/console.py
@@ -506,7 +506,7 @@ class vmmConsolePages(gobject.GObject):
if username:
argv += ['-l', username]
- argv += [ server, "nc", vncaddr, str(vncport) ]
+ argv += [ server, "netcat", vncaddr, str(vncport) ]
logging.debug("Creating SSH tunnel: %s" % argv)