081f979e1e
Drop Requires on python3-six Refreshed several patches with minor line offset changes. OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=467
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
Enhancement to correctly detect Open Enterprise Server media is
|
|
selected as the installation source.
|
|
Index: virt-manager-2.1.0/virtinst/urldetect.py
|
|
===================================================================
|
|
--- virt-manager-2.1.0.orig/virtinst/urldetect.py
|
|
+++ virt-manager-2.1.0/virtinst/urldetect.py
|
|
@@ -556,7 +556,7 @@ class _SuseDistro(_RHELDistro):
|
|
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()
|
|
@@ -625,6 +625,14 @@ class _OpensuseDistro(_SuseDistro):
|
|
famregex = ".*openSUSE.*"
|
|
|
|
|
|
+class _OESDistro(_SuseDistro):
|
|
+ PRETTY_NAME = "OES"
|
|
+ matching_distros = ["oes"]
|
|
+ _variant_prefix = "oes"
|
|
+ _suse_regex = [".*Open Enterprise Server*"]
|
|
+ famregex = ".*Open Enterprise Server.*"
|
|
+
|
|
+
|
|
class _DebianDistro(_DistroTree):
|
|
# ex. http://ftp.egr.msu.edu/debian/dists/sarge/main/installer-i386/
|
|
# daily builds: https://d-i.debian.org/daily-images/amd64/
|