2019-02-01 18:07:42 +01:00
|
|
|
References: fate#326960, bsc#1123942
|
|
|
|
|
2022-03-03 05:17:21 +01:00
|
|
|
Index: virt-manager-4.0.0/virtinst/install/installer.py
|
2019-02-01 18:07:42 +01:00
|
|
|
===================================================================
|
2022-03-03 05:17:21 +01:00
|
|
|
--- virt-manager-4.0.0.orig/virtinst/install/installer.py
|
|
|
|
+++ virt-manager-4.0.0/virtinst/install/installer.py
|
|
|
|
@@ -592,7 +592,10 @@ class Installer(object):
|
2019-02-13 00:00:26 +01:00
|
|
|
guest.bootloader = "pygrub"
|
2019-02-01 18:07:42 +01:00
|
|
|
else:
|
2019-02-13 00:00:26 +01:00
|
|
|
guest.bootloader = None
|
2019-10-28 18:01:55 +01:00
|
|
|
- self._treemedia_bootconfig = ("/usr/lib/grub2/x86_64-xen/grub.xen", "", "")
|
2019-02-01 18:07:42 +01:00
|
|
|
+ if os.path.exists("/usr/share/grub2/x86_64-xen/grub.xen"):
|
2019-10-28 18:01:55 +01:00
|
|
|
+ self._treemedia_bootconfig = ("/usr/share/grub2/x86_64-xen/grub.xen", "", "")
|
2019-02-01 18:07:42 +01:00
|
|
|
+ else:
|
2019-10-28 18:01:55 +01:00
|
|
|
+ self._treemedia_bootconfig = ("/usr/lib/grub2/x86_64-xen/grub.xen", "", "")
|
- 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
|
|
|
log.debug("Using grub.xen to boot guest")
|
2019-11-22 21:56:15 +01:00
|
|
|
on_reboot_value = guest.on_reboot
|
2019-10-28 18:01:55 +01:00
|
|
|
self._alter_bootconfig(guest)
|
2022-03-03 05:17:21 +01:00
|
|
|
Index: virt-manager-4.0.0/virtManager/delete.py
|
2019-02-01 18:07:42 +01:00
|
|
|
===================================================================
|
2022-03-03 05:17:21 +01:00
|
|
|
--- virt-manager-4.0.0.orig/virtManager/delete.py
|
|
|
|
+++ virt-manager-4.0.0/virtManager/delete.py
|
|
|
|
@@ -459,7 +459,7 @@ def _populate_storage_list(storage_list,
|
2020-09-16 19:23:41 +02:00
|
|
|
model.clear()
|
2019-02-01 18:07:42 +01:00
|
|
|
|
2020-09-16 19:23:41 +02:00
|
|
|
for diskdata in diskdatas:
|
|
|
|
- if not diskdata.path or diskdata.path == "/usr/lib/grub2/x86_64-xen/grub.xen":
|
|
|
|
+ if not diskdata.path or "grub.xen" in diskdata.path:
|
2019-02-01 18:07:42 +01:00
|
|
|
continue
|
|
|
|
|
|
|
|
# There are a few pieces here
|