ae026a575b
* Merged code with python-virtinst. virtinst is no longer public * Port from GTK2 to GTK3 (Daniel Berrange, Cole Robinson) * Port from gconf to gsettings * Port from autotools to python distutils * Remove virt-manager-tui * Remove HAL support * IPv6 and static route virtual network support (Gene Czarcinski) * virt-install: Add –cpu host-passthrough (Ken ICHIKAWA, Hu Tao) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=129
21 lines
868 B
Diff
21 lines
868 B
Diff
Reverses upstream patch: serialcon: Don't open a console with name=None
|
|
Git: ce94126b707f157d88de113a8c591e628d55db63
|
|
bnc#780859
|
|
|
|
Index: virt-manager-0.10.0/virtManager/serialcon.py
|
|
===================================================================
|
|
--- virt-manager-0.10.0.orig/virtManager/serialcon.py
|
|
+++ virt-manager-0.10.0/virtManager/serialcon.py
|
|
@@ -199,8 +199,9 @@ class LibvirtConsoleConnection(ConsoleCo
|
|
name = dev and dev.alias.name or None
|
|
logging.debug("Opening console stream for dev=%s alias=%s",
|
|
dev, name)
|
|
- if not name:
|
|
- raise RuntimeError(_("Cannot open a device with no alias name"))
|
|
+ # bnc#780859
|
|
+ #if not name:
|
|
+ # raise RuntimeError(_("Cannot open a device with no alias name"))
|
|
|
|
self.stream = self.conn.vmm.newStream(libvirt.VIR_STREAM_NONBLOCK)
|
|
|