aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/config.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-12-02 05:01:02 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-12-02 05:01:02 +0000
commitb4a24ca1f0dbdcebfaba7cac8289c37f8372d5fa (patch)
tree6c100c3ffaa9704a3305ebb4dc815634ab0c42f6 /usr.sbin/sysinstall/config.c
parent6b95a3424e5ccdc49688da1c44164ccc2e625fe8 (diff)
downloadsrc-b4a24ca1f0dbdcebfaba7cac8289c37f8372d5fa.tar.gz
src-b4a24ca1f0dbdcebfaba7cac8289c37f8372d5fa.zip
Don't run routed by default.
Virtually-Demanded-At-Gunpoint-By: joerg
Notes
Notes: svn path=/head/; revision=20077
Diffstat (limited to 'usr.sbin/sysinstall/config.c')
-rw-r--r--usr.sbin/sysinstall/config.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c
index 76316a66ac80..7bdc5b95c81c 100644
--- a/usr.sbin/sysinstall/config.c
+++ b/usr.sbin/sysinstall/config.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: config.c,v 1.59 1996/11/09 19:25:59 jkh Exp $
+ * $Id: config.c,v 1.60 1996/11/27 22:52:31 phk Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -434,7 +434,7 @@ configRouter(dialogMenuItem *self)
"will attempt to load if you select gated. Any other\n"
"choice of routing daemon will be assumed to be something\n"
"the user intends to install themselves before rebooting\n"
- "the system. If you don't want any routing daemon, say NO") ?
+ "the system. If you don't want any routing daemon, choose NO") ?
DITEM_SUCCESS : DITEM_FAILURE;
if (ret == DITEM_SUCCESS) {
@@ -444,8 +444,8 @@ configRouter(dialogMenuItem *self)
if (strcmp(cp, "NO")) {
if (!strcmp(cp, "gated")) {
if (package_add(PACKAGE_GATED) != DITEM_SUCCESS) {
- msgConfirm("Unable to load gated package. Falling back to routed.");
- variable_set2(VAR_ROUTER, "routed");
+ msgConfirm("Unable to load gated package. Falling back to no router.");
+ variable_set2(VAR_ROUTER, "NO");
}
}
/* Now get the flags, if they chose a router */