From nobody@FreeBSD.org  Wed Mar 28 17:01:31 2001
Return-Path: <nobody@FreeBSD.org>
Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP id EFF1F37B725
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 28 Mar 2001 17:01:30 -0800 (PST)
	(envelope-from nobody@FreeBSD.org)
Received: (from nobody@localhost)
	by freefall.freebsd.org (8.11.1/8.11.1) id f2T11UW97926;
	Wed, 28 Mar 2001 17:01:30 -0800 (PST)
	(envelope-from nobody)
Message-Id: <200103290101.f2T11UW97926@freefall.freebsd.org>
Date: Wed, 28 Mar 2001 17:01:30 -0800 (PST)
From: unfurl@FreeBSD.org
To: freebsd-gnats-submit@FreeBSD.org
Subject: setting nonInteractive in install.cfg is ignored in RTSOL/IPv6 and DHCP sections of sysinstall
X-Send-Pr-Version: www-1.0

>Number:         26187
>Category:       misc
>Synopsis:       setting nonInteractive in install.cfg is ignored in RTSOL/IPv6 and DHCP sections of sysinstall
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    eric
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Mar 28 17:10:01 PST 2001
>Closed-Date:    Fri Aug 31 12:50:27 PDT 2001
>Last-Modified:  Fri Aug 31 12:57:29 PDT 2001
>Originator:     Bill Swingle
>Release:        4.3-BETA
>Organization:
Swan Systems
>Environment:
FreeBSD snarf.sf.swansystems.com 4.3-BETA FreeBSD 4.3-BETA #2: Mon Mar 19 13:46:38 PST 2001     
bswingle@snarf.sf.swansystems.com:/usr/obj/usr/src/sys/SNARF  i386

>Description:
If you set nonInteractive=YES and tryRTSOL=NO or tryDHCP=NO in install.cfg
sysinstall pops up a *interactive* dialog asking if you'd like to try either
one of the protocols.
>How-To-Repeat:
Do the above...
>Fix:
Re-work logic in /usr/src/release/sysinstall/tcpip.c around line 350.
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->jkh 
Responsible-Changed-By: roam 
Responsible-Changed-When: Thu Mar 29 07:50:00 PST 2001 
Responsible-Changed-Why:  
JKH is the sysinstall maintainer. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=26187 

From: Glenn Trewitt <glenn@trewitt.org>
To: freebsd-gnats-submit@FreeBSD.org, unfurl@FreeBSD.org
Cc:  
Subject: Re: misc/26187: setting nonInteractive in install.cfg is ignored in 
 RTSOL/IPv6 and DHCP sections of sysinstall
Date: Fri, 01 Jun 2001 17:56:56 -0700

 This is the same problem as reported in bin/24136.  See my followup to
 that one.  The exact fix is to change (in tcpip.c):
 
         if (!variable_cmp(VAR_TRY_DHCP, "YES") ||
             ((!variable_cmp(VAR_TRY_DHCP, "NO")) && (!msgNoYes("Do you
 want to try DHCP configuration of the interface?")))) {
 
 to
         if (!variable_cmp(VAR_TRY_DHCP, "YES") ||
             ((variable_cmp(VAR_TRY_DHCP, "NO")) && (!msgNoYes("Do you
 want to try DHCP configuration of the interface?")))) {
 
 Repeat this for VAR_TRY_RTSOL.
 
     - Glenn Trewitt
 
 
Responsible-Changed-From-To: jkh->eric 
Responsible-Changed-By: jkh 
Responsible-Changed-When: Thu Aug 30 17:28:41 PDT 2001 
Responsible-Changed-Why:  
Eric handles these now 

http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25851 
Responsible-Changed-From-To: jkh->eric 
Responsible-Changed-By: jkh 
Responsible-Changed-When: Thu Aug 30 17:28:41 PDT 2001 
Responsible-Changed-Why:  
Eric needs more work since he decided to major in flower arranging 

http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26187 
State-Changed-From-To: open->closed 
State-Changed-By: jkh 
State-Changed-When: Fri Aug 31 12:50:27 PDT 2001 
State-Changed-Why:  
Fix committed (I feel sorry for Eric now), thanks! 


http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26187 
>Unformatted:
