686ee09506
b8aff280-virtinst-quickfix-ubuntu-net-preseed-insert-cdrom-error.patch 25b88733-urldetect-Dont-overload-suse_content-variable.patch 9308bae3-util-Fix-typo-vpcu-vcpu.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=438
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
Enhancement to correctly detect Open Enterprise Server media is
|
|
selected as the installation source.
|
|
Index: virt-manager-2.0.0/virtinst/urldetect.py
|
|
===================================================================
|
|
--- virt-manager-2.0.0.orig/virtinst/urldetect.py
|
|
+++ virt-manager-2.0.0/virtinst/urldetect.py
|
|
@@ -573,7 +573,7 @@ class SuseDistro(Distro):
|
|
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()
|
|
@@ -645,6 +645,13 @@ class OpensuseDistro(SuseDistro):
|
|
famregex = ".*openSUSE.*"
|
|
|
|
|
|
+class OESDistro(SuseDistro):
|
|
+ PRETTY_NAME = "OES"
|
|
+ _variant_prefix = "oes"
|
|
+ _suse_regex = [".*Open Enterprise Server*"]
|
|
+ famregex = ".*Open Enterprise Server.*"
|
|
+
|
|
+
|
|
class DebianDistro(Distro):
|
|
# ex. http://ftp.egr.msu.edu/debian/dists/sarge/main/installer-i386/
|
|
# daily builds: https://d-i.debian.org/daily-images/amd64/
|