Re: [PATCH virt-manager] virtManager, create: disable ISO detection with remote connections

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 08/05/2014 11:02 AM, Giuseppe Scrivano wrote:
> Cole Robinson <crobinso@xxxxxxxxxx> writes:
> 
>> The logic is getting quite fragmented. Check set_install_page where we already
>> handle hiding the detection UI for options like PXE. We should extend that to
>> hide detection for remote HV + CDROM option, and probably revert the previous
>> patch.
> 
> sorry to have missed this part for the first patch.
> 
> Moving the logic of the first commit+the additional check for URL
> installations to set_install_page works for me:
> 
> diff --git a/virtManager/create.py b/virtManager/create.py
> index 00d909a..09bd305 100644
> --- a/virtManager/create.py
> +++ b/virtManager/create.py
> @@ -1168,9 +1168,7 @@ class vmmCreate(vmmGObjectUI):
>          self.start_detection(forward=forward)
>  
>      def toggle_detect_os(self, src):
> -        dodetect = not self.conn.is_remote()
> -        src.set_active(dodetect)
> -        src.set_visible(dodetect)
> +        dodetect = src.get_active()
>  
>          self.widget("install-os-type-label").set_visible(dodetect)
>          self.widget("install-os-version-label").set_visible(dodetect)
> @@ -1288,7 +1286,12 @@ class vmmCreate(vmmGObjectUI):
>                                     INSTALL_PAGE_CONTAINER_OS]
>          osbox.set_visible(iscontainer)
>  
> -        if instpage in (INSTALL_PAGE_ISO, INSTALL_PAGE_URL):
> +        enabledetect = (instpage == INSTALL_PAGE_ISO and
> +                        self.conn and
> +                        not self.conn.is_remote() or
> +                        self.get_config_install_page() == INSTALL_PAGE_URL)
> +
> +        if enabledetect:
>              detectbox.show()
>          else:
>              detectbox.hide()
> 

ACK, though while you are there, change the explicit show/hide to
detectbox.set_visible(enabledetect)

Thanks,
Cole

_______________________________________________
virt-tools-list mailing list
virt-tools-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/virt-tools-list




[Index of Archives]     [Linux Virtualization]     [KVM Development]     [CentOS Virtualization]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]     [Video 4 Linux]

  Powered by Linux