summaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1997-09-17 13:33:36 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1997-09-17 13:33:36 +0000
commit86485a0c8162d1f7e92f4fc4932fc8c091e82879 (patch)
treede096f4622f47b93562ebf39cc99afb392a3fd6b /release
parent2639d9b4b54c7e19ad63fb310f85e25ee7bc5474 (diff)
Notes
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/sysinstall.812
-rw-r--r--release/sysinstall/tcpip.c12
2 files changed, 18 insertions, 6 deletions
diff --git a/release/sysinstall/sysinstall.8 b/release/sysinstall/sysinstall.8
index 613b21047b11..6d4f5ecc9f81 100644
--- a/release/sysinstall/sysinstall.8
+++ b/release/sysinstall/sysinstall.8
@@ -22,7 +22,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $Id: sysinstall.8,v 1.1.2.3 1997/09/08 11:16:12 jkh Exp $
+.\" $Id: sysinstall.8,v 1.1.2.4 1997/09/10 10:16:26 jkh Exp $
.\"
.Dd August 9, 1997
.Dt SYSINSTALL 8
@@ -640,7 +640,7 @@ Select an FTP site as the installation media.
\fBVariables:\fR
.Bl -tag -width indent
.It hostname
-The name of the host being installed (optional).
+The name of the host being installed (non-optional).
.It domainname
The domain name of the host being installed (optional).
.It defaultrouter
@@ -651,6 +651,9 @@ Which host interface to use (
or
.Ar ep0 ,
for example. Non-optional).
+.It netInteractive
+If set, bring up the interactive network setup form even
+if all relevant configuration variables are already set (optional).
.It ipaddr
The IP address for the selected host interface (non-optional).
.It netmask
@@ -689,7 +692,7 @@ interested in.
\fBVariables:\fR
.Bl -tag -width indent
.It hostname
-The name of the host being installed (optional).
+The name of the host being installed (non-optional).
.It domainname
The domain name of the host being installed (optional).
.It defaultrouter
@@ -700,6 +703,9 @@ Which host interface to use (
or
.Ar ep0 ,
for example. Non-optional).
+.It netInteractive
+If set, bring up the interactive network setup form even
+if all relevant configuration variables are already set (optional).
.It ipaddr
The IP address for the selected host interface (non-optional).
.It netmask
diff --git a/release/sysinstall/tcpip.c b/release/sysinstall/tcpip.c
index 0ab729a599c2..67a3ea49c48d 100644
--- a/release/sysinstall/tcpip.c
+++ b/release/sysinstall/tcpip.c
@@ -1,5 +1,5 @@
/*
- * $Id: tcpip.c,v 1.48.2.19 1997/06/18 05:12:01 jkh Exp $
+ * $Id: tcpip.c,v 1.48.2.20 1997/09/08 11:16:13 jkh Exp $
*
* Copyright (c) 1995
* Gary J Palmer. All rights reserved.
@@ -211,8 +211,14 @@ tcpOpenDialog(Device *devp)
save = savescr();
/* If non-interactive, jump straight over the dialog crap and into config section */
- if (variable_get(VAR_NONINTERACTIVE) && hostname[0])
- goto netconfig;
+ if (variable_get(VAR_NONINTERACTIVE) && !variable_get("netInteractive")) {
+ if (!hostname[0])
+ msgConfirm("WARNING: hostname variable not set and is a non-optional\n"
+ "parameter. Please add this to your installation script\n"
+ "or set the netInteractive variable (see sysinstall man page)");
+ else
+ goto netconfig;
+ }
/* Now do all the screen I/O */
dialog_clear_norefresh();