summaryrefslogtreecommitdiffstats
path: root/release/sysinstall/install.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-04-30 06:02:51 +0000
committerjkh <jkh@FreeBSD.org>1996-04-30 06:02:51 +0000
commit6135ae2274f5afb94f2d5ff7213fa5d30ba29039 (patch)
treea8cd7380060626253dc7a4cdd04d96ca64489acc /release/sysinstall/install.c
parent3b4b3363a4bb6165c2c470a0182cf06934d88203 (diff)
downloadFreeBSD-src-6135ae2274f5afb94f2d5ff7213fa5d30ba29039.zip
FreeBSD-src-6135ae2274f5afb94f2d5ff7213fa5d30ba29039.tar.gz
properly reset SYSTEM_STATE after installCommit runs.
Diffstat (limited to 'release/sysinstall/install.c')
-rw-r--r--release/sysinstall/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index 607c276..0e4f0e5 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.93 1996/04/29 21:15:42 jkh Exp $
+ * $Id: install.c,v 1.94 1996/04/30 05:23:46 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -382,7 +382,6 @@ installNovice(dialogMenuItem *self)
"No.\n\n"
"If you wish to re-enter this utility after the system is up, you\n"
"may do so by typing: /stand/sysinstall.");
- variable_set2(SYSTEM_STATE, DITEM_STATUS(i) == DITEM_FAILURE ? "error-install" : "full-install");
if (mediaDevice->type != DEVICE_TYPE_FTP && mediaDevice->type != DEVICE_TYPE_NFS) {
if (!msgYesNo("Would you like to configure this machine's network interfaces?")) {
@@ -515,6 +514,7 @@ installCommit(dialogMenuItem *self)
"If you have any network devices you have not yet configured,\n"
"see the Interfaces configuration item on the Configuration menu.");
}
+ variable_set2(SYSTEM_STATE, DITEM_STATUS(i) == DITEM_FAILURE ? "error-install" : "full-install");
return i | DITEM_RESTORE | DITEM_RECREATE;
}
OpenPOWER on IntegriCloud