d9d300204b
* Support for adding usb redirection devices (Marc-André Lureau) * Option to switch usb controller to support usb2.0 (Marc-André Lureau) * Option to specify machine type for non-x86 guests (Li Zhang) * Support for filesystem device type and write policy (Deepak C Shetty) * Many bug fixes! - Update to virtinst 0.600.1 * virt-install: --redir option for usb redirection (Marc-André Lureau) * virt-install: Advanced --controller support for usb2 (Marc-André Lureau) * Many bug fixes and minor improvments. OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=86
82 lines
3.7 KiB
Diff
82 lines
3.7 KiB
Diff
Index: virt-manager-0.9.1/src/virtManager/engine.py
|
|
===================================================================
|
|
--- virt-manager-0.9.1.orig/src/virtManager/engine.py
|
|
+++ virt-manager-0.9.1/src/virtManager/engine.py
|
|
@@ -41,7 +41,6 @@ from virtManager.manager import vmmManag
|
|
from virtManager.migrate import vmmMigrateDialog
|
|
from virtManager.details import vmmDetails
|
|
from virtManager.asyncjob import vmmAsyncJob
|
|
-from virtManager.create import vmmCreate
|
|
from virtManager.host import vmmHost
|
|
from virtManager.error import vmmErrorDialog
|
|
from virtManager.systray import vmmSystray
|
|
@@ -818,11 +817,47 @@ class vmmEngine(vmmGObject):
|
|
self.windowCreate = obj
|
|
return self.windowCreate
|
|
|
|
+ def _vmmcreate_closing(self,signal,key):
|
|
+ self.windowCreate = None
|
|
+
|
|
def _do_show_create(self, src, uri):
|
|
- try:
|
|
- self._get_create_dialog().show(src.topwin, uri)
|
|
- except Exception, e:
|
|
- src.err.show_err(_("Error launching manager: %s") % str(e))
|
|
+ if uri is None:
|
|
+ uri = default_uri()
|
|
+ conn = self._lookup_conn(uri)
|
|
+ do_remote = conn.is_remote()
|
|
+ if self.windowCreate == None or do_remote != self.remote_install:
|
|
+ try:
|
|
+ if do_remote:
|
|
+ from virtManager.create import vmmCreate
|
|
+ create = vmmCreate(self)
|
|
+ create.connect("action-show-vm", self._do_show_vm)
|
|
+ create.connect("action-show-help", self._do_show_help)
|
|
+ create.connect("vmmcreate-closing", self._vmmcreate_closing)
|
|
+ self.remote_install = True
|
|
+ self.windowCreate = create
|
|
+ self.windowCreate.show(src.topwin, uri)
|
|
+ else:
|
|
+ from vminstall.gtk.interface import VMCreate as vmmCreate
|
|
+ create = vmmCreate(virtman=True,key=0)
|
|
+ create.connect("action-show-vm", self._do_show_vm)
|
|
+ create.connect("vmmcreate-closing", self._vmmcreate_closing)
|
|
+ self.remote_install = False
|
|
+ self.windowCreate = create
|
|
+ self.windowCreate.show(src.topwin)
|
|
+ except Exception, e:
|
|
+ src.err.show_err(_("Error launching manager: %s") % str(e),
|
|
+ "".join(traceback.format_exc()))
|
|
+ else:
|
|
+ if do_remote:
|
|
+ self.windowCreate.show(src.topwin, uri)
|
|
+ else:
|
|
+ message_box = gtk.MessageDialog(None,
|
|
+ gtk.DIALOG_MODAL,
|
|
+ gtk.MESSAGE_WARNING,
|
|
+ gtk.BUTTONS_OK,
|
|
+ _("A new installation is already in progress.\n\nUse the YaST \"Create Virtual Machines\" utility for concurrent installations."))
|
|
+ message_box.run()
|
|
+ message_box.destroy()
|
|
|
|
def _do_show_migrate(self, src, uri, uuid):
|
|
try:
|
|
Index: virt-manager-0.9.1/src/virtManager/create.py
|
|
===================================================================
|
|
--- virt-manager-0.9.1.orig/src/virtManager/create.py
|
|
+++ virt-manager-0.9.1/src/virtManager/create.py
|
|
@@ -156,6 +156,7 @@ class vmmCreate(vmmGObjectUI):
|
|
|
|
def close(self, ignore1=None, ignore2=None):
|
|
logging.debug("Closing new vm wizard")
|
|
+ self.emit('vmmcreate-closing', 0)
|
|
self.topwin.hide()
|
|
self.remove_timers()
|
|
|
|
@@ -2134,3 +2135,4 @@ class vmmCreate(vmmGObjectUI):
|
|
vmmGObjectUI.type_register(vmmCreate)
|
|
vmmCreate.signal_new(vmmCreate, "action-show-vm", [str, str])
|
|
vmmCreate.signal_new(vmmCreate, "action-show-help", [str])
|
|
+vmmCreate.signal_new(vmmCreate, "vmmcreate-closing", [str])
|