f88a913443
* Slim down filesystem device editor UI * Fix TOCTTOU virt-install bugs (Martin Pitt) * Several other bug fixes virt-manager-3.2.0.tar.bz2 - Drop patches contained in new tarball 1a1e4580-cloner-Explicitly-reject-network-disks-we-dont-know-how-to-clone.patch 2773bc35-storagepool-cleanup-volumes-on-pool-cleanup.patch b1328202-devices-disk-Skip-check_path_search-for-path.patch virtman-append-usr-sbin-to-search-path.patch - Upstream bug fixes (bsc#1027942) 1a1e4580-cloner-Explicitly-reject-network-disks-we-dont-know-how-to-clone.patch 2773bc35-storagepool-cleanup-volumes-on-pool-cleanup.patch b1328202-devices-disk-Skip-check_path_search-for-path.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=525
19 lines
841 B
Diff
19 lines
841 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-3.2.0/virtinst/install/installer.py
|
|
===================================================================
|
|
--- virt-manager-3.2.0.orig/virtinst/install/installer.py
|
|
+++ virt-manager-3.2.0/virtinst/install/installer.py
|
|
@@ -167,7 +167,8 @@ class Installer(object):
|
|
def _remove_install_cdrom_media(self, guest):
|
|
if not self._install_cdrom_device_added:
|
|
return
|
|
- if guest.osinfo.is_windows():
|
|
+ if (guest.osinfo.is_windows() or
|
|
+ guest.osinfo.name.startswith(("sles", "sled", "opensuse"))):
|
|
# Keep media attached for windows which has a multi stage install
|
|
return
|
|
for disk in guest.devices.disk:
|