2015-06-08 14:36:45 +02:00
|
|
|
Enhancement to correctly detect Open Enterprise Server media is
|
|
|
|
selected as the installation source.
|
2019-07-29 21:36:33 +02:00
|
|
|
Index: virt-manager-2.2.1/virtinst/install/urldetect.py
|
2015-06-08 14:36:45 +02:00
|
|
|
===================================================================
|
2019-07-29 21:36:33 +02:00
|
|
|
--- virt-manager-2.2.1.orig/virtinst/install/urldetect.py
|
|
|
|
+++ virt-manager-2.2.1/virtinst/install/urldetect.py
|
- 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
|
|
|
@@ -553,7 +553,7 @@ class _SuseDistro(_RHELDistro):
|
2018-10-30 23:00:52 +01:00
|
|
|
if int(version) < 10:
|
|
|
|
return self._variant_prefix + "9"
|
|
|
|
|
|
|
|
- if str(self._variant_prefix).startswith(("sles", "sled")):
|
|
|
|
+ if str(self._variant_prefix).startswith(("sles", "sled", "oes")):
|
|
|
|
sp_version = ""
|
|
|
|
if len(distro_version.split('.', 1)) == 2:
|
|
|
|
sp_version = 'sp' + distro_version.split('.', 1)[1].strip()
|
- 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
|
|
|
@@ -622,6 +622,14 @@ class _OpensuseDistro(_SuseDistro):
|
2018-10-30 23:00:52 +01:00
|
|
|
famregex = ".*openSUSE.*"
|
2017-08-30 00:10:15 +02:00
|
|
|
|
|
|
|
|
2019-02-04 19:46:20 +01:00
|
|
|
+class _OESDistro(_SuseDistro):
|
2018-10-30 23:00:52 +01:00
|
|
|
+ PRETTY_NAME = "OES"
|
2019-02-04 19:46:20 +01:00
|
|
|
+ matching_distros = ["oes"]
|
2018-10-30 23:00:52 +01:00
|
|
|
+ _variant_prefix = "oes"
|
|
|
|
+ _suse_regex = [".*Open Enterprise Server*"]
|
|
|
|
+ famregex = ".*Open Enterprise Server.*"
|
2017-08-30 00:10:15 +02:00
|
|
|
+
|
2018-10-30 23:00:52 +01:00
|
|
|
+
|
2019-02-04 19:46:20 +01:00
|
|
|
class _DebianDistro(_DistroTree):
|
2018-10-30 23:00:52 +01:00
|
|
|
# ex. http://ftp.egr.msu.edu/debian/dists/sarge/main/installer-i386/
|
|
|
|
# daily builds: https://d-i.debian.org/daily-images/amd64/
|
2019-07-29 21:36:33 +02:00
|
|
|
@@ -830,6 +838,7 @@ def _build_distro_list(osobj):
|
|
|
|
_SLESDistro,
|
|
|
|
_SLEDDistro,
|
|
|
|
_OpensuseDistro,
|
|
|
|
+ _OESDistro,
|
|
|
|
_DebianDistro,
|
|
|
|
_UbuntuDistro,
|
|
|
|
_MageiaDistro,
|