2014-03-27 23:27:37 +01:00
|
|
|
Index: virt-manager-1.0.1/virtManager/details.py
|
2010-08-02 23:45:48 +02:00
|
|
|
===================================================================
|
2014-03-27 23:27:37 +01:00
|
|
|
--- virt-manager-1.0.1.orig/virtManager/details.py
|
|
|
|
+++ virt-manager-1.0.1/virtManager/details.py
|
2014-07-01 05:41:52 +02:00
|
|
|
@@ -2056,10 +2056,10 @@ class vmmDetails(vmmGObjectUI):
|
2014-03-24 16:05:15 +01:00
|
|
|
return self._change_config_helper(self.vm.define_memory, kwargs,
|
|
|
|
hotplug_args=hotplug_args)
|
2011-09-20 17:08:57 +02:00
|
|
|
|
2011-03-21 20:38:43 +01:00
|
|
|
- def config_boot_options_apply(self):
|
2014-03-24 16:05:15 +01:00
|
|
|
- kwargs = {}
|
2011-09-20 17:08:57 +02:00
|
|
|
-
|
- If connection is Xen, default to PV instead of HVM.
virtman-default-to-xen-pv.patch
- Update to virt-manager 1.0.0
* virt-manager: Snapshot support
* New tool virt-xml: Edit libvirt XML in one shot from the command line. Check out some examples: http://www.redhat.com/archives/libvir-list/2014-January/msg01226.html
* Improved defaults: qcow2, USB2, host CPU model, guest agent channel, …
* Introspect command line options like –disk=? or –network=help
* The virt-image tool will be removed before the next release, speak up if you have a good reason not to remove it.
* virt-manager: Support arm vexpress VM creation
* virt-manager: Add guest memory usage graphs (Thorsten Behrens)
* virt-manager: UI for editing devices (Cédric Bosdonnat)
* Spice USB redirection support (Guannan Ren)
* UI and command line support (Stefan Berger)
* UI and command line support (Giuseppe Scrivano)
* UI and command line support (Chen Hanxiao)
* command line support (Chen Hanxiao)
* virt-manager: support for glusterfs storage pools (Giuseppe Scrivano)
* cli: New options –memory, –features, –clock, –metadata, –pm
* Greatly improve app responsiveness when connecting to remote hosts
* Lots of UI cleanup and improvements
virt-manager-1.0.0.tar.bz2
- Dropped the following patches by taking a newer upstream tarball
virt-manager-0.10.0.tar.bz2
Add-memory-stats-widget-also-to-manager-tree-view.patch
Attempt-empty-path-on-virDomainBlockStats.patch
Base-mem-statistics-on-virDomainMemoryStats-if-avail.patch
virtinst-add-cache-modes.patch
virtinst-allow-ide-hdb.patch
virtinst-clone-disks.patch
OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=143
2014-02-15 16:46:55 +01:00
|
|
|
- if self.edited(EDIT_AUTOSTART):
|
2010-08-02 23:45:48 +02:00
|
|
|
+ # Autostart - See bnc#624250 - L3: virt-manager doesn't update
|
|
|
|
+ # "Autostart" setting in vm configuration correctly
|
|
|
|
+ def update_on_xend_start(self):
|
- If connection is Xen, default to PV instead of HVM.
virtman-default-to-xen-pv.patch
- Update to virt-manager 1.0.0
* virt-manager: Snapshot support
* New tool virt-xml: Edit libvirt XML in one shot from the command line. Check out some examples: http://www.redhat.com/archives/libvir-list/2014-January/msg01226.html
* Improved defaults: qcow2, USB2, host CPU model, guest agent channel, …
* Introspect command line options like –disk=? or –network=help
* The virt-image tool will be removed before the next release, speak up if you have a good reason not to remove it.
* virt-manager: Support arm vexpress VM creation
* virt-manager: Add guest memory usage graphs (Thorsten Behrens)
* virt-manager: UI for editing devices (Cédric Bosdonnat)
* Spice USB redirection support (Guannan Ren)
* UI and command line support (Stefan Berger)
* UI and command line support (Giuseppe Scrivano)
* UI and command line support (Chen Hanxiao)
* command line support (Chen Hanxiao)
* virt-manager: support for glusterfs storage pools (Giuseppe Scrivano)
* cli: New options –memory, –features, –clock, –metadata, –pm
* Greatly improve app responsiveness when connecting to remote hosts
* Lots of UI cleanup and improvements
virt-manager-1.0.0.tar.bz2
- Dropped the following patches by taking a newer upstream tarball
virt-manager-0.10.0.tar.bz2
Add-memory-stats-widget-also-to-manager-tree-view.patch
Attempt-empty-path-on-virDomainBlockStats.patch
Base-mem-statistics-on-virDomainMemoryStats-if-avail.patch
virtinst-add-cache-modes.patch
virtinst-allow-ide-hdb.patch
virtinst-clone-disks.patch
OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=143
2014-02-15 16:46:55 +01:00
|
|
|
+ if self.edited(EDIT_AUTOSTART) or self.vm.conn.is_xen():
|
2011-09-20 17:08:57 +02:00
|
|
|
auto = self.widget("config-autostart")
|
|
|
|
try:
|
2013-05-31 23:10:54 +02:00
|
|
|
self.vm.set_autostart(auto.get_active())
|
2014-07-01 05:41:52 +02:00
|
|
|
@@ -2068,6 +2068,9 @@ class vmmDetails(vmmGObjectUI):
|
2011-09-20 17:08:57 +02:00
|
|
|
(_("Error changing autostart value: %s") % str(e)))
|
2011-03-21 20:38:43 +01:00
|
|
|
return False
|
|
|
|
|
|
|
|
+ def config_boot_options_apply(self):
|
2014-03-24 16:05:15 +01:00
|
|
|
+ kwargs = {}
|
2011-09-20 17:08:57 +02:00
|
|
|
+
|
- If connection is Xen, default to PV instead of HVM.
virtman-default-to-xen-pv.patch
- Update to virt-manager 1.0.0
* virt-manager: Snapshot support
* New tool virt-xml: Edit libvirt XML in one shot from the command line. Check out some examples: http://www.redhat.com/archives/libvir-list/2014-January/msg01226.html
* Improved defaults: qcow2, USB2, host CPU model, guest agent channel, …
* Introspect command line options like –disk=? or –network=help
* The virt-image tool will be removed before the next release, speak up if you have a good reason not to remove it.
* virt-manager: Support arm vexpress VM creation
* virt-manager: Add guest memory usage graphs (Thorsten Behrens)
* virt-manager: UI for editing devices (Cédric Bosdonnat)
* Spice USB redirection support (Guannan Ren)
* UI and command line support (Stefan Berger)
* UI and command line support (Giuseppe Scrivano)
* UI and command line support (Chen Hanxiao)
* command line support (Chen Hanxiao)
* virt-manager: support for glusterfs storage pools (Giuseppe Scrivano)
* cli: New options –memory, –features, –clock, –metadata, –pm
* Greatly improve app responsiveness when connecting to remote hosts
* Lots of UI cleanup and improvements
virt-manager-1.0.0.tar.bz2
- Dropped the following patches by taking a newer upstream tarball
virt-manager-0.10.0.tar.bz2
Add-memory-stats-widget-also-to-manager-tree-view.patch
Attempt-empty-path-on-virDomainBlockStats.patch
Base-mem-statistics-on-virDomainMemoryStats-if-avail.patch
virtinst-add-cache-modes.patch
virtinst-allow-ide-hdb.patch
virtinst-clone-disks.patch
OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=143
2014-02-15 16:46:55 +01:00
|
|
|
if self.edited(EDIT_BOOTORDER):
|
2014-03-24 16:05:15 +01:00
|
|
|
kwargs["boot_order"] = self.get_config_boot_order()
|
|
|
|
|
2014-07-18 01:22:14 +02:00
|
|
|
@@ -2370,6 +2373,8 @@ class vmmDetails(vmmGObjectUI):
|
2013-11-26 22:23:05 +01:00
|
|
|
buttons=Gtk.ButtonsType.OK,
|
2011-03-21 20:38:43 +01:00
|
|
|
dialog_type=dtype)
|
2010-08-02 23:45:48 +02:00
|
|
|
|
|
|
|
+ self.update_on_xend_start()
|
|
|
|
+
|
|
|
|
return True
|
|
|
|
|
2014-03-24 16:05:15 +01:00
|
|
|
|