Change default user/group to ones that actually exist in default passwd
file.
This commit is contained in:
parent
39affc3bcc
commit
ed99f5eec3
@ -4,7 +4,7 @@
|
||||
* This is probably the last program in the `sysinstall' line - the next
|
||||
* generation being essentially a complete rewrite.
|
||||
*
|
||||
* $Id: apache.c,v 1.22 1996/04/29 19:34:23 jkh Exp $
|
||||
* $Id: apache.c,v 1.23 1996/06/08 12:01:23 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Coranth Gryphon. All rights reserved.
|
||||
@ -53,8 +53,8 @@
|
||||
|
||||
/* These change if the package uses different defaults */
|
||||
|
||||
#define DEFAULT_USER "guest"
|
||||
#define DEFAULT_GROUP "guest"
|
||||
#define DEFAULT_USER "bin"
|
||||
#define DEFAULT_GROUP "bin"
|
||||
#define WELCOME_FILE "index.html"
|
||||
#define USER_HOMEDIR "public_html"
|
||||
|
||||
|
@ -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.35 1996/06/12 14:20:16 jkh Exp $
|
||||
* $Id: config.c,v 1.36 1996/06/13 17:36:26 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -587,8 +587,10 @@ configPCNFSD(dialogMenuItem *self)
|
||||
variable_unset(VAR_PCNFSD);
|
||||
else {
|
||||
ret = package_add("pcnfsd-93.02.16");
|
||||
if (DITEM_STATUS(ret) == DITEM_SUCCESS)
|
||||
if (DITEM_STATUS(ret) == DITEM_SUCCESS) {
|
||||
variable_set2(VAR_PCNFSD, "YES");
|
||||
variable_set2("weak_mountd_authentication", "YES");
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
@ -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.35 1996/06/12 14:20:16 jkh Exp $
|
||||
* $Id: config.c,v 1.36 1996/06/13 17:36:26 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -587,8 +587,10 @@ configPCNFSD(dialogMenuItem *self)
|
||||
variable_unset(VAR_PCNFSD);
|
||||
else {
|
||||
ret = package_add("pcnfsd-93.02.16");
|
||||
if (DITEM_STATUS(ret) == DITEM_SUCCESS)
|
||||
if (DITEM_STATUS(ret) == DITEM_SUCCESS) {
|
||||
variable_set2(VAR_PCNFSD, "YES");
|
||||
variable_set2("weak_mountd_authentication", "YES");
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
@ -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.35 1996/06/12 14:20:16 jkh Exp $
|
||||
* $Id: config.c,v 1.36 1996/06/13 17:36:26 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -587,8 +587,10 @@ configPCNFSD(dialogMenuItem *self)
|
||||
variable_unset(VAR_PCNFSD);
|
||||
else {
|
||||
ret = package_add("pcnfsd-93.02.16");
|
||||
if (DITEM_STATUS(ret) == DITEM_SUCCESS)
|
||||
if (DITEM_STATUS(ret) == DITEM_SUCCESS) {
|
||||
variable_set2(VAR_PCNFSD, "YES");
|
||||
variable_set2("weak_mountd_authentication", "YES");
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user