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
895 B
Diff
19 lines
895 B
Diff
References: bsc#989639
|
|
When the device added is a cdrom device (/dev/sr0), don't use
|
|
"phy" as the driver name but instead use "qemu".
|
|
|
|
Index: virt-manager-3.2.0/virtinst/devices/disk.py
|
|
===================================================================
|
|
--- virt-manager-3.2.0.orig/virtinst/devices/disk.py
|
|
+++ virt-manager-3.2.0/virtinst/devices/disk.py
|
|
@@ -527,7 +527,8 @@ class DeviceDisk(Device):
|
|
# Recommended xen defaults from here:
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1171550#c9
|
|
# If type block, use name=phy. Otherwise do the same as qemu
|
|
- if self.conn.is_xen() and self.type == self.TYPE_BLOCK:
|
|
+ if self.conn.is_xen() and self.type == self.TYPE_BLOCK and not \
|
|
+ self.is_cdrom():
|
|
return self.DRIVER_NAME_PHY
|
|
if self.conn.support.conn_disk_driver_name_qemu():
|
|
return self.DRIVER_NAME_QEMU
|