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:
Giuseppe Scrivano 2014-03-19 16:05:54 +01:00
parent a7050f918f
commit 8d580cc483
2 changed files with 13 additions and 2 deletions

View File

@ -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)

View File

@ -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)