4f78e3544f
on first reboot virtinst-keep-install-iso-attached.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=360
19 lines
760 B
Diff
19 lines
760 B
Diff
Older SLE guests have a two stage installation that need the ISO.
|
|
Newer SLE PV guests hang when a cdrom device is attached without
|
|
an ISO file.
|
|
|
|
Index: virt-manager-1.4.2/virtinst/guest.py
|
|
===================================================================
|
|
--- virt-manager-1.4.2.orig/virtinst/guest.py
|
|
+++ virt-manager-1.4.2/virtinst/guest.py
|
|
@@ -804,7 +804,8 @@ class Guest(XMLBuilder):
|
|
# install.
|
|
if (dev.is_cdrom() and
|
|
getattr(dev, "installer_media", False) and
|
|
- not self._os_object.is_windows()):
|
|
+ not self._os_object.is_windows() and
|
|
+ not self.os_variant.startswith(("sles", "sled", "opensuse"))):
|
|
dev.path = None
|
|
|
|
def _set_defaults(self):
|