| Summary: | setting nonInteractive in install.cfg is ignored in RTSOL/IPv6 and DHCP sections of sysinstall | ||
|---|---|---|---|
| Product: | Base System | Reporter: | unfurl <unfurl> |
| Component: | misc | Assignee: | Eric Melville <eric> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Unspecified | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
unfurl
2001-03-29 02:10:01 UTC
Responsible Changed From-To: freebsd-bugs->jkh JKH is the sysinstall maintainer. 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 Eric handles these now Responsible Changed From-To: jkh->eric Eric needs more work since he decided to major in flower arranging State Changed From-To: open->closed Fix committed (I feel sorry for Eric now), thanks! |