summaryrefslogtreecommitdiff
path: root/release/sysinstall/install.c
diff options
context:
space:
mode:
Diffstat (limited to 'release/sysinstall/install.c')
-rw-r--r--release/sysinstall/install.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index a16ae4ca3bb50..24a8bb10d3877 100644
--- a/release/sysinstall/install.c
+++ b/release/sysinstall/install.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: install.c,v 1.134.2.38 1997/03/18 07:03:41 mpp Exp $
+ * $Id: install.c,v 1.134.2.41 1997/03/28 09:30:18 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -498,14 +498,15 @@ installNovice(dialogMenuItem *self)
"may do so by typing: /stand/sysinstall.");
}
if (mediaDevice->type != DEVICE_TYPE_FTP && mediaDevice->type != DEVICE_TYPE_NFS) {
- if (!msgYesNo("Would you like to configure any SLIP/PPP or network interface devices?")) {
+ if (!msgYesNo("Would you like to configure any Ethernet or SLIP/PPP network devices?")) {
Device *tmp;
+ dialog_clear_norefresh();
tmp = tcpDeviceSelect();
+ dialog_clear_norefresh();
if (tmp && !msgYesNo("Would you like to bring the %s interface up right now?", tmp->name))
if (!tmp->init(tmp))
msgConfirm("Initialization of %s device failed.", tmp->name);
- dialog_clear_norefresh();
}
}
@@ -585,11 +586,13 @@ installNovice(dialogMenuItem *self)
configUsers(self);
dialog_clear_norefresh();
- if (!msgYesNo("Would you like to set the system manager's password now?\n\n"
- "This is the password you'll use to log in as \"root\".")) {
+ msgConfirm("Now you must set the system manager's password.\n"
+ "This is the password you'll use to log in as \"root\".");
+ {
WINDOW *w = savescr();
- systemExecute("passwd root");
+ if (!systemExecute("passwd root"))
+ variable_set2("root_password", "YES");
restorescr(w);
}