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!
This commit is contained in:
jkh 1995-11-17 23:49:45 +00:00
parent e6424f8486
commit 0e75315ebc

View File

@ -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;
}