2017-10-30 21:23:56 +01:00
|
|
|
Enhancement for the following GUI wizard installation option.
|
2015-05-04 22:15:01 +02:00
|
|
|
1) If Xen, leave 'Architecture options' expanded so users know PV
|
|
|
|
is the default
|
2020-10-01 01:10:42 +02:00
|
|
|
Index: virt-manager-3.1.0/virtManager/createvm.py
|
2014-03-19 16:18:34 +01:00
|
|
|
===================================================================
|
2020-10-01 01:10:42 +02:00
|
|
|
--- virt-manager-3.1.0.orig/virtManager/createvm.py
|
|
|
|
+++ virt-manager-3.1.0/virtManager/createvm.py
|
|
|
|
@@ -459,8 +459,20 @@ class vmmCreateVM(vmmGObjectUI):
|
2014-03-19 16:18:34 +01:00
|
|
|
self.widget("method-local").set_active(True)
|
|
|
|
self.widget("create-conn").set_active(-1)
|
2015-11-26 00:27:12 +01:00
|
|
|
activeconn = self._populate_conn_list(urihint)
|
2014-03-19 16:18:34 +01:00
|
|
|
- self.widget("arch-expander").set_expanded(False)
|
2017-08-09 21:02:00 +02:00
|
|
|
self.widget("vz-virt-type-hvm").set_active(True)
|
2015-05-04 22:15:01 +02:00
|
|
|
+ # For Xen have the expander open so users can see PV is the default
|
2014-03-24 16:05:15 +01:00
|
|
|
+ if activeconn and activeconn.is_xen():
|
2014-03-19 16:18:34 +01:00
|
|
|
+ self.widget("arch-expander").set_expanded(True)
|
|
|
|
+ else:
|
|
|
|
+ self.widget("arch-expander").set_expanded(False)
|
|
|
|
+
|
|
|
|
+ # Default to Network install if host was installed that way
|
- bsc#1140211 - VUL-1: CVE-2019-10183: virt-manager: unattended
option leaks password via command line argument
58c68764-unattended-Read-the-passwords-from-a-file.patch
51d28f04-unattended-Dont-log-user-admin-passwords.patch
- Upstream bug fix (bsc#1027942)
5312a961-virt-install-Revive-wait-0-as-alias-for-noautoconsole.patch
- Update to virt-manager 2.2.0 (fate#326786)
virt-manager-2.2.0.tar.bz2
* libvirt XML viewing and editing UI for new and existing domain, pools, volumes, networks
* virt-install: libosinfo –unattended support (Fabiano Fidêncio, Cole Robinson)
* Improve CPU model security defaults (Pavel Hrdina)
* virt-install: new –install option. Ex: virt-install –install fedora29
* virt-install: new –install kernel=,initrd=
* virt-install: –disk, –memory, –name defaults from libosinfo (Fabiano Fidêncio, Cole Robinson)
* virt-install: add device suboption aliases which consistently match libvirt XML naming
* virt-xml: new –start, –no-define options (Marc Hartmayer)
* virt-install: Add driver_queues argument to –controller (Vasudeva Kamath)
* RISC-V support (Andrea Bolognani)
* Device default improvements for non-x86 KVM (Andrea Bolognani)
* Redesigned ‘New Network’ wizard
* libguestfs inspection improvements (Pino Toscano)
* virt-install: Add support for xenbus controller (Jim Fehlig)
* cli: Add –disk wwn=,rawio= (Athina Plaskasoviti)
* cli: Add –memballoon autodeflate=,stats.period= (Athina Plaskasoviti)
* cli: Add –iothreads (Athina Plaskasoviti)
* cli: Add –numatune memory.placement (Athina Plaskasoviti)
* cli: Add –launchSecurity option (Erik Skultety)
* cli: Fill in –memorybacking options
* cli: –smartcard: support database= and certificate[0-9]*=
OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=476
2019-07-03 20:19:42 +02:00
|
|
|
+ host_instsrc = getHostInstallSource()
|
2014-03-19 16:18:34 +01:00
|
|
|
+ if host_instsrc is not None and \
|
2014-03-19 23:29:53 +01:00
|
|
|
+ (host_instsrc.startswith('ftp:') or host_instsrc.startswith('http:') or \
|
|
|
|
+ host_instsrc.startswith('smb:') or host_instsrc.startswith('nfs:')):
|
2014-03-19 16:18:34 +01:00
|
|
|
+ self.widget("method-local").set_active(False)
|
|
|
|
+ self.widget("method-tree").set_active(True)
|
|
|
|
|
2015-11-26 00:27:12 +01:00
|
|
|
if self._set_conn(activeconn) is False:
|
|
|
|
return False
|