Re: 8.0-BETA2 sysinstall ignoring setting of nonInteractive

From: Randi Harper <randi_at_freebsd.org>
Date: Wed, 22 Jul 2009 10:55:25 -0700
On Tue, Jul 21, 2009 at 5:27 PM, Daniel O'Connor <doconnor_at_gsoft.com.au>wrote:

> On Wed, 22 Jul 2009, David Boyd wrote:
> > With 8.0-BETA(1/2) sysinstall ignores setting of nonInteractive
> > variable when using USB-based install.
> >
> > With or without nonInteractive sysinstall issues message "Using USB
> > device: da0a" and waits for confirmation.
> >
> > This breaks unattended installations using USB device.
>
> I think this would fix it, can you test it?
>
> Index: media.c
> ===================================================================
> --- media.c     (revision 195813)
> +++ media.c     (working copy)
> _at__at_ -262,7 +262,8 _at__at_
>                mediaDevice = devs[0];
>        if (mediaDevice)
>                mediaDevice->private = NULL;
> -       msgConfirm("Using USB device: %s", mediaDevice->name);
> +       if (!variable_get(VAR_NONINTERACTIVE))
> +               msgConfirm("Using USB device: %s", mediaDevice->name);
>        return (mediaDevice ? DITEM_LEAVE_MENU : DITEM_FAILURE);
>  }
>

Woops. :)

I'll test this out later tonight and see if I can get the fix in. Thanks,
Daniel.

-- randi
Received on Wed Jul 22 2009 - 16:17:51 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:39:52 UTC