mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
virt-manager: disable CD/DVDROM passtrough on RHEL
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1072610 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
parent
a7050f918f
commit
8d580cc483
@ -97,7 +97,13 @@ class vmmChooseCD(vmmGObjectUI):
|
||||
|
||||
def reset_state(self):
|
||||
self.mediacombo.reset_state()
|
||||
use_cdrom = (self.mediacombo.has_media())
|
||||
|
||||
enable_phys = not self.vm.stable_defaults()
|
||||
self.widget("physical-media").set_sensitive(enable_phys)
|
||||
self.widget("physical-media").set_tooltip_text("" if enable_phys else
|
||||
_("Physical CDROM passthrough not supported with this hypervisor"))
|
||||
|
||||
use_cdrom = (self.mediacombo.has_media()) and enable_phys
|
||||
|
||||
self.widget("physical-media").set_active(use_cdrom)
|
||||
self.widget("iso-image").set_active(not use_cdrom)
|
||||
|
@ -551,9 +551,14 @@ class vmmCreate(vmmGObjectUI):
|
||||
cdrom_option.set_active(self.mediacombo.has_media())
|
||||
iso_option.set_active(not self.mediacombo.has_media())
|
||||
|
||||
enable_phys = not self._stable_defaults()
|
||||
cdrom_option.set_sensitive(enable_phys)
|
||||
cdrom_option.set_tooltip_text("" if enable_phys else
|
||||
_("Physical CDROM passthrough not supported with this hypervisor"))
|
||||
|
||||
# Only allow ISO option for remote VM
|
||||
is_local = not self.conn.is_remote()
|
||||
if not is_local:
|
||||
if not is_local or not enable_phys:
|
||||
iso_option.set_active(True)
|
||||
|
||||
self.toggle_local_cdrom(cdrom_option)
|
||||
|
Loading…
Reference in New Issue
Block a user