8.0-BETA2 sysinstall ignoring setting of nonInteractive
Randi Harper
randi at freebsd.org
Wed Jul 22 18:17:51 UTC 2009
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)
> @@ -262,7 +262,8 @@
> 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
More information about the freebsd-current
mailing list