summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-11-17 23:49:45 +0000
committerjkh <jkh@FreeBSD.org>1995-11-17 23:49:45 +0000
commit62889588f4154f65624d3edd9ef15460f18a0514 (patch)
treef2b5070e7ba18df22c2471187e24b9b040b2f2cb /release
parentef36b9955894e321e23b12f4d0889153774c9e3c (diff)
downloadFreeBSD-src-62889588f4154f65624d3edd9ef15460f18a0514.zip
FreeBSD-src-62889588f4154f65624d3edd9ef15460f18a0514.tar.gz
Ack. How embarassing. The PCNFSD and GATED config items were essentially
no-ops up to now, and the samba configuration didn't bother to add the package either. Whoops!
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/installFinal.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/release/sysinstall/installFinal.c b/release/sysinstall/installFinal.c
index 4734c6b..050e86e 100644
--- a/release/sysinstall/installFinal.c
+++ b/release/sysinstall/installFinal.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: installFinal.c,v 1.19 1995/11/12 07:27:58 jkh Exp $
+ * $Id: installFinal.c,v 1.20 1995/11/12 11:12:25 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard & Coranth Gryphon. All rights reserved.
@@ -73,11 +73,21 @@ static DMenu MenuSamba = {
#define SMB_CONF "./smb.conf"
-/* Load gated package and maybe even seek to configure or explain it a little */
+/* Load gated package */
int
configGated(char *unused)
{
- variable_set2("gated", "YES");
+ if (package_add("gated-3.5a11") == RET_SUCCESS)
+ variable_set2("gated", "YES");
+ return RET_SUCCESS;
+}
+
+/* Load pcnfsd package */
+int
+configPCNFSD(char *unused)
+{
+ if (package_add("pcnfsd-93.02.16") == RET_SUCCESS)
+ variable_set2("pcnfsd", "YES");
return RET_SUCCESS;
}
@@ -88,6 +98,8 @@ configSamba(char *unused)
if (!dmenuOpenSimple(&MenuSamba))
i = RET_FAIL;
+ else if (package_add("samba-1.9.14") != RET_SUCCESS)
+ i = RET_FAIL;
else {
FILE *fptr;
char tbuf[256], *tptr;
@@ -209,4 +221,3 @@ configNFSServer(char *unused)
variable_set2("nfs_server", "YES");
return RET_SUCCESS;
}
-
OpenPOWER on IntegriCloud