0b51f8ff5d
(TOCTOU) race condition Resolved by upgrade to version 4.0.0 (jsc#SLE-16582) virt-manager-4.0.0.tar.gz - Other features and bug fixes (bsc#1027942) virt-install –os-variant/–osinfo is now a hard requirement for most cases Add ‘Enable shared memory’ UI checkbox (Lin Ma) add UI preference to default to UEFI for new VMs (Charles Arnold) Add virtiofs filesystem driver UI option Fill in all –cputune, –cpu, –shmem, –input, and –boot suboptions (Hugues Fafard) virt-* mdev improvements (Shalini Chellathurai Saroja) bhyve improvments (Roman Bogorodskiy) Revive network portgroup UI enable a TPM by default when UEFI is used (Daniel P. Berrangé) Use cpu host-passthrough by default on qemu x86 use virtio-gpu video for most modern distros Default to extra pcie root ports for q35 set discard=unmap by default for sparse disks and block devices We now require xorissofs for –location ISO We now use setuptools rather than just plain distutils - Add virtman-revert-use-of-AyatanaAppIndicator3.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=558
53 lines
1.8 KiB
Diff
53 lines
1.8 KiB
Diff
References: bsc#1010060
|
|
|
|
Index: virt-manager-3.3.0/virtinst/install/urldetect.py
|
|
===================================================================
|
|
--- virt-manager-3.3.0.orig/virtinst/install/urldetect.py
|
|
+++ virt-manager-3.3.0/virtinst/install/urldetect.py
|
|
@@ -278,6 +278,12 @@ class _SUSEContent(object):
|
|
self.product_name.strip().rsplit(' ')[5][2])
|
|
distro_version = sle_version
|
|
|
|
+ # SUSE Container as a Service Platform
|
|
+ if "Container" in self.product_name:
|
|
+ distro_version = self.product_name.strip().rsplit(' ')[6]
|
|
+ elif "CaaS" in self.product_name:
|
|
+ distro_version = self.product_name.strip().rsplit(' ')[3]
|
|
+
|
|
return distro_version
|
|
|
|
|
|
@@ -564,6 +570,9 @@ class _SuseDistro(_RHELDistro):
|
|
|
|
version = distro_version.split('.', 1)[0].strip()
|
|
|
|
+ if self._variant_prefix.startswith(("caasp")):
|
|
+ return self._variant_prefix + distro_version
|
|
+
|
|
if str(self._variant_prefix).startswith(("sles", "sled", "oes")):
|
|
sp_version = ""
|
|
if len(distro_version.split('.', 1)) == 2:
|
|
@@ -633,6 +642,14 @@ class _OpensuseDistro(_SuseDistro):
|
|
famregex = ".*openSUSE.*"
|
|
|
|
|
|
+class _CAASPDistro(_SuseDistro):
|
|
+ PRETTY_NAME = "SLES"
|
|
+ matching_distros = ["caasp"]
|
|
+ _variant_prefix = "caasp"
|
|
+ _suse_regex = [".*SUSE Container as a Service Platform*", ".*SUSE CaaS Platform*"]
|
|
+ famregex = ".*(SUSE Container as a Service Platform|SUSE CaaS Platform).*"
|
|
+
|
|
+
|
|
class _OESDistro(_SuseDistro):
|
|
PRETTY_NAME = "OES"
|
|
matching_distros = ["oes"]
|
|
@@ -870,6 +887,7 @@ def _build_distro_list(osobj):
|
|
_SLESDistro,
|
|
_SLEDDistro,
|
|
_OpensuseDistro,
|
|
+ _CAASPDistro,
|
|
_OESDistro,
|
|
_DebianDistro,
|
|
_UbuntuDistro,
|