summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>2000-02-18 18:33:15 +0000
committerjkh <jkh@FreeBSD.org>2000-02-18 18:33:15 +0000
commitb2280568bf79a9b24d0193e16cad79571bb9ea79 (patch)
treeb362ec4b63bdbe7b19f8d95d6aef4a08cdc80d0a /release
parent49ba463e5bfcdfc8ba0d634691e3bcc577c69cb3 (diff)
downloadFreeBSD-src-b2280568bf79a9b24d0193e16cad79571bb9ea79.zip
FreeBSD-src-b2280568bf79a9b24d0193e16cad79571bb9ea79.tar.gz
Invert the meaning of two questions in the Standard installation so just
whapping "Yes" by default does not turn you into an anonymous FTP-supporting gateway machine. Those aren't the right "defaults."
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/install.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index 38c22cc..4f8cf72 100644
--- a/release/sysinstall/install.c
+++ b/release/sysinstall/install.c
@@ -304,7 +304,7 @@ installFixitCDROM(dialogMenuItem *self)
/* Yet more iggly hardcoded pathnames. */
Mkdir("/usr/libexec");
- if (!file_readable("/usr/libexec/ld.so")) {
+ if (!file_readable("/usr/libexec/ld.so") && file_readable("/mnt2/usr/libexec/ld.so")) {
if (symlink("/mnt2/usr/libexec/ld.so", "/usr/libexec/ld.so"))
msgDebug("Couldn't link to ld.so - not necessarily a problem for ELF\n");
}
@@ -537,11 +537,12 @@ nodisks:
dialog_clear_norefresh();
}
- if (!msgYesNo("Will this machine be an IP gateway (e.g. will it forward packets\n"
+ if (msgYesNo("Will this machine be a leaf node (e.g. will not forward packets)\n"
"between interfaces)?"))
variable_set2("gateway_enable", "YES", 1);
- if (!msgYesNo("Do you want to allow anonymous FTP connections to this machine?"))
+ if (!msgYesNo("Do you want to grant only normal users FTP access to this\n"
+ "host (e.g. no anonymous FTP connections)?"))
configAnonFTP(self);
if (!msgYesNo("Do you want to configure this machine as an NFS server?"))
OpenPOWER on IntegriCloud