Write changes out to /etc/rc.conf.site now rather than mucking with

rc.conf.  There were many different ways I could have done this, some of
them "cleaner", but this represented the lowest impact.
This commit is contained in:
Jordan K. Hubbard 1999-01-27 02:32:47 +00:00
parent 1bf6d2f8de
commit 24c1db52ef
9 changed files with 195 additions and 144 deletions

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next * This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite. * generation being essentially a complete rewrite.
* *
* $Id: config.c,v 1.114 1998/10/14 01:04:44 jkh Exp $ * $Id: config.c,v 1.115 1998/11/15 09:06:19 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -287,9 +287,8 @@ readConfig(char *config, char **lines, int max)
#define MAX_LINES 2000 /* Some big number we're not likely to ever reach - I'm being really lazy here, I know */ #define MAX_LINES 2000 /* Some big number we're not likely to ever reach - I'm being really lazy here, I know */
/* Load the environment from an rc.conf file */ static void
void configReadRC_conf(char *config)
configEnvironmentRC_conf(char *config)
{ {
char *lines[MAX_LINES], *cp, *cp2; char *lines[MAX_LINES], *cp, *cp2;
int i, nlines; int i, nlines;
@ -321,6 +320,24 @@ configEnvironmentRC_conf(char *config)
} }
} }
/* Load the environment from rc.conf file(s) */
void
configEnvironmentRC_conf(void)
{
static char *configs[] = {
"/etc/rc.conf",
"/etc/rc.conf.site",
"/etc/rc.conf.local",
NULL
};
int i;
for (i = 0; configs[i]; i++) {
if (file_readable(configs[i]))
configReadRC_conf(configs[i]);
}
}
/* Load the environment from a resolv.conf file */ /* Load the environment from a resolv.conf file */
void void
configEnvironmentResolv(char *config) configEnvironmentResolv(char *config)
@ -359,11 +376,15 @@ configRC(dialogMenuItem *unused)
void void
configRC_conf(char *config) configRC_conf(char *config)
{ {
FILE *fp; FILE *rcSite;
char *lines[MAX_LINES], *cp; char *lines[MAX_LINES], *cp;
Variable *v; Variable *v;
int i, nlines, len; int i, nlines, len;
rcSite = fopen("/etc/rc.conf.site", "w");
if (!rcSite)
return;
nlines = readConfig(config, lines, MAX_LINES); nlines = readConfig(config, lines, MAX_LINES);
if (nlines == -1) if (nlines == -1)
return; return;
@ -372,8 +393,11 @@ configRC_conf(char *config)
for (v = VarHead; v; v = v->next) { for (v = VarHead; v; v = v->next) {
for (i = 0; i < nlines; i++) { for (i = 0; i < nlines; i++) {
/* Skip the comments & non-variable settings */ /* Skip the comments & non-variable settings */
if (lines[i][0] == '#' || !(cp = index(lines[i], '='))) if (lines[i][0] == '#' || !(cp = index(lines[i], '='))) {
free(lines[i]);
continue; continue;
}
len = strlen(v->name); len = strlen(v->name);
if (!strncmp(lines[i], v->name, cp - lines[i]) && (cp - lines[i]) == len) { if (!strncmp(lines[i], v->name, cp - lines[i]) && (cp - lines[i]) == len) {
char *cp2, *comment = NULL; char *cp2, *comment = NULL;
@ -389,57 +413,50 @@ configRC_conf(char *config)
} }
} }
free(lines[i]); free(lines[i]);
lines[i] = (char *)malloc(strlen(v->name) + strlen(v->value) + (comment ? strlen(comment) : 0) + 10); lines[i] = (char *)alloca(strlen(v->name) + strlen(v->value) + (comment ? strlen(comment) : 0) + 10);
if (comment) if (comment)
sprintf(lines[i], "%s=\"%s\"%s", v->name, v->value, comment); sprintf(lines[i], "%s=\"%s\"%s", v->name, v->value, comment);
else else
sprintf(lines[i], "%s=\"%s\"\n", v->name, v->value); sprintf(lines[i], "%s=\"%s\"\n", v->name, v->value);
} fputs(lines[i], rcSite);
} /* Stand by for bogus special case handling;
} * we try to dump the interface specs here
*/
if (!strncmp(lines[i], VAR_INTERFACES,
strlen(VAR_INTERFACES))) {
Device **devp;
int j, cnt;
/* Now write it all back out again */ devp = deviceFind(NULL, DEVICE_TYPE_NETWORK);
if (isDebug()) cnt = deviceCount(devp);
msgDebug("Writing configuration changes to %s file..", config); for (j = 0; j < cnt; j++) {
if (Fake) char iname[255], toadd[512];
fp = fdopen(DebugFD, "w"); int k, addit = TRUE;
else {
(void)vsystem("cp %s %s.previous", config, config);
fp = fopen(config, "w");
}
for (i = 0; i < nlines; i++) {
fprintf(fp, lines[i]);
/* Stand by for bogus special case handling - we try to dump the interface specs here */
if (!strncmp(lines[i], VAR_INTERFACES, strlen(VAR_INTERFACES))) {
Device **devp;
int j, cnt;
devp = deviceFind(NULL, DEVICE_TYPE_NETWORK); if (!strncmp(devp[j]->name, "ppp", 3) ||
cnt = deviceCount(devp); !strncmp(devp[j]->name, "tun", 3))
for (j = 0; j < cnt; j++) { continue;
char iname[255], toadd[512];
int k, addit = TRUE;
if (!strncmp(devp[j]->name, "ppp", 3) || !strncmp(devp[j]->name, "tun", 3)) snprintf(iname, 255, "%s%s", VAR_IFCONFIG, devp[j]->name);
continue; if ((cp = variable_get(iname))) {
snprintf(toadd, sizeof toadd, "%s=\"%s\"\n", iname, cp);
snprintf(iname, 255, "%s%s", VAR_IFCONFIG, devp[j]->name); for (k = 0; k < nlines; k++) {
if ((cp = variable_get(iname))) { if (!strcmp(lines[k], toadd)) {
snprintf(toadd, sizeof toadd, "%s=\"%s\"\n", iname, cp); addit = FALSE;
for (k = 0; k < nlines; k++) { break;
if (!strcmp(lines[k], toadd)) { }
addit = FALSE; }
break; if (addit)
fputs(toadd, rcSite);
} }
} }
if (addit)
fprintf(fp, toadd);
} }
} }
else
free(lines[i]);
} }
free(lines[i]);
} }
fclose(fp); fclose(rcSite);
} }
int int

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next * This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite. * generation being essentially a complete rewrite.
* *
* $Id: install.c,v 1.222 1999/01/20 11:56:39 jkh Exp $ * $Id: install.c,v 1.223 1999/01/20 12:31:42 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -1065,7 +1065,7 @@ void
installEnvironment(void) installEnvironment(void)
{ {
if (file_readable("/etc/rc.conf")) if (file_readable("/etc/rc.conf"))
configEnvironmentRC_conf("/etc/rc.conf"); configEnvironmentRC_conf();
if (file_readable("/etc/resolv.conf")) if (file_readable("/etc/resolv.conf"))
configEnvironmentResolv("/etc/resolv.conf"); configEnvironmentResolv("/etc/resolv.conf");
} }

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next * This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite. * generation being slated to essentially a complete rewrite.
* *
* $Id: sysinstall.h,v 1.152 1998/12/22 12:31:25 jkh Exp $ * $Id: sysinstall.h,v 1.153 1999/01/20 12:31:43 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -401,7 +401,7 @@ extern void command_shell_add(char *key, char *fmt, ...);
extern void command_func_add(char *key, commandFunc func, void *data); extern void command_func_add(char *key, commandFunc func, void *data);
/* config.c */ /* config.c */
extern void configEnvironmentRC_conf(char *config); extern void configEnvironmentRC_conf(void);
extern void configEnvironmentResolv(char *config); extern void configEnvironmentResolv(char *config);
extern void configRC_conf(char *config); extern void configRC_conf(char *config);
extern int configFstab(dialogMenuItem *self); extern int configFstab(dialogMenuItem *self);

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next * This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite. * generation being essentially a complete rewrite.
* *
* $Id: config.c,v 1.114 1998/10/14 01:04:44 jkh Exp $ * $Id: config.c,v 1.115 1998/11/15 09:06:19 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -287,9 +287,8 @@ readConfig(char *config, char **lines, int max)
#define MAX_LINES 2000 /* Some big number we're not likely to ever reach - I'm being really lazy here, I know */ #define MAX_LINES 2000 /* Some big number we're not likely to ever reach - I'm being really lazy here, I know */
/* Load the environment from an rc.conf file */ static void
void configReadRC_conf(char *config)
configEnvironmentRC_conf(char *config)
{ {
char *lines[MAX_LINES], *cp, *cp2; char *lines[MAX_LINES], *cp, *cp2;
int i, nlines; int i, nlines;
@ -321,6 +320,24 @@ configEnvironmentRC_conf(char *config)
} }
} }
/* Load the environment from rc.conf file(s) */
void
configEnvironmentRC_conf(void)
{
static char *configs[] = {
"/etc/rc.conf",
"/etc/rc.conf.site",
"/etc/rc.conf.local",
NULL
};
int i;
for (i = 0; configs[i]; i++) {
if (file_readable(configs[i]))
configReadRC_conf(configs[i]);
}
}
/* Load the environment from a resolv.conf file */ /* Load the environment from a resolv.conf file */
void void
configEnvironmentResolv(char *config) configEnvironmentResolv(char *config)
@ -359,11 +376,15 @@ configRC(dialogMenuItem *unused)
void void
configRC_conf(char *config) configRC_conf(char *config)
{ {
FILE *fp; FILE *rcSite;
char *lines[MAX_LINES], *cp; char *lines[MAX_LINES], *cp;
Variable *v; Variable *v;
int i, nlines, len; int i, nlines, len;
rcSite = fopen("/etc/rc.conf.site", "w");
if (!rcSite)
return;
nlines = readConfig(config, lines, MAX_LINES); nlines = readConfig(config, lines, MAX_LINES);
if (nlines == -1) if (nlines == -1)
return; return;
@ -372,8 +393,11 @@ configRC_conf(char *config)
for (v = VarHead; v; v = v->next) { for (v = VarHead; v; v = v->next) {
for (i = 0; i < nlines; i++) { for (i = 0; i < nlines; i++) {
/* Skip the comments & non-variable settings */ /* Skip the comments & non-variable settings */
if (lines[i][0] == '#' || !(cp = index(lines[i], '='))) if (lines[i][0] == '#' || !(cp = index(lines[i], '='))) {
free(lines[i]);
continue; continue;
}
len = strlen(v->name); len = strlen(v->name);
if (!strncmp(lines[i], v->name, cp - lines[i]) && (cp - lines[i]) == len) { if (!strncmp(lines[i], v->name, cp - lines[i]) && (cp - lines[i]) == len) {
char *cp2, *comment = NULL; char *cp2, *comment = NULL;
@ -389,57 +413,50 @@ configRC_conf(char *config)
} }
} }
free(lines[i]); free(lines[i]);
lines[i] = (char *)malloc(strlen(v->name) + strlen(v->value) + (comment ? strlen(comment) : 0) + 10); lines[i] = (char *)alloca(strlen(v->name) + strlen(v->value) + (comment ? strlen(comment) : 0) + 10);
if (comment) if (comment)
sprintf(lines[i], "%s=\"%s\"%s", v->name, v->value, comment); sprintf(lines[i], "%s=\"%s\"%s", v->name, v->value, comment);
else else
sprintf(lines[i], "%s=\"%s\"\n", v->name, v->value); sprintf(lines[i], "%s=\"%s\"\n", v->name, v->value);
} fputs(lines[i], rcSite);
} /* Stand by for bogus special case handling;
} * we try to dump the interface specs here
*/
if (!strncmp(lines[i], VAR_INTERFACES,
strlen(VAR_INTERFACES))) {
Device **devp;
int j, cnt;
/* Now write it all back out again */ devp = deviceFind(NULL, DEVICE_TYPE_NETWORK);
if (isDebug()) cnt = deviceCount(devp);
msgDebug("Writing configuration changes to %s file..", config); for (j = 0; j < cnt; j++) {
if (Fake) char iname[255], toadd[512];
fp = fdopen(DebugFD, "w"); int k, addit = TRUE;
else {
(void)vsystem("cp %s %s.previous", config, config);
fp = fopen(config, "w");
}
for (i = 0; i < nlines; i++) {
fprintf(fp, lines[i]);
/* Stand by for bogus special case handling - we try to dump the interface specs here */
if (!strncmp(lines[i], VAR_INTERFACES, strlen(VAR_INTERFACES))) {
Device **devp;
int j, cnt;
devp = deviceFind(NULL, DEVICE_TYPE_NETWORK); if (!strncmp(devp[j]->name, "ppp", 3) ||
cnt = deviceCount(devp); !strncmp(devp[j]->name, "tun", 3))
for (j = 0; j < cnt; j++) { continue;
char iname[255], toadd[512];
int k, addit = TRUE;
if (!strncmp(devp[j]->name, "ppp", 3) || !strncmp(devp[j]->name, "tun", 3)) snprintf(iname, 255, "%s%s", VAR_IFCONFIG, devp[j]->name);
continue; if ((cp = variable_get(iname))) {
snprintf(toadd, sizeof toadd, "%s=\"%s\"\n", iname, cp);
snprintf(iname, 255, "%s%s", VAR_IFCONFIG, devp[j]->name); for (k = 0; k < nlines; k++) {
if ((cp = variable_get(iname))) { if (!strcmp(lines[k], toadd)) {
snprintf(toadd, sizeof toadd, "%s=\"%s\"\n", iname, cp); addit = FALSE;
for (k = 0; k < nlines; k++) { break;
if (!strcmp(lines[k], toadd)) { }
addit = FALSE; }
break; if (addit)
fputs(toadd, rcSite);
} }
} }
if (addit)
fprintf(fp, toadd);
} }
} }
else
free(lines[i]);
} }
free(lines[i]);
} }
fclose(fp); fclose(rcSite);
} }
int int

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next * This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite. * generation being essentially a complete rewrite.
* *
* $Id: install.c,v 1.222 1999/01/20 11:56:39 jkh Exp $ * $Id: install.c,v 1.223 1999/01/20 12:31:42 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -1065,7 +1065,7 @@ void
installEnvironment(void) installEnvironment(void)
{ {
if (file_readable("/etc/rc.conf")) if (file_readable("/etc/rc.conf"))
configEnvironmentRC_conf("/etc/rc.conf"); configEnvironmentRC_conf();
if (file_readable("/etc/resolv.conf")) if (file_readable("/etc/resolv.conf"))
configEnvironmentResolv("/etc/resolv.conf"); configEnvironmentResolv("/etc/resolv.conf");
} }

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next * This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite. * generation being slated to essentially a complete rewrite.
* *
* $Id: sysinstall.h,v 1.152 1998/12/22 12:31:25 jkh Exp $ * $Id: sysinstall.h,v 1.153 1999/01/20 12:31:43 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -401,7 +401,7 @@ extern void command_shell_add(char *key, char *fmt, ...);
extern void command_func_add(char *key, commandFunc func, void *data); extern void command_func_add(char *key, commandFunc func, void *data);
/* config.c */ /* config.c */
extern void configEnvironmentRC_conf(char *config); extern void configEnvironmentRC_conf(void);
extern void configEnvironmentResolv(char *config); extern void configEnvironmentResolv(char *config);
extern void configRC_conf(char *config); extern void configRC_conf(char *config);
extern int configFstab(dialogMenuItem *self); extern int configFstab(dialogMenuItem *self);

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next * This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite. * generation being essentially a complete rewrite.
* *
* $Id: config.c,v 1.114 1998/10/14 01:04:44 jkh Exp $ * $Id: config.c,v 1.115 1998/11/15 09:06:19 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -287,9 +287,8 @@ readConfig(char *config, char **lines, int max)
#define MAX_LINES 2000 /* Some big number we're not likely to ever reach - I'm being really lazy here, I know */ #define MAX_LINES 2000 /* Some big number we're not likely to ever reach - I'm being really lazy here, I know */
/* Load the environment from an rc.conf file */ static void
void configReadRC_conf(char *config)
configEnvironmentRC_conf(char *config)
{ {
char *lines[MAX_LINES], *cp, *cp2; char *lines[MAX_LINES], *cp, *cp2;
int i, nlines; int i, nlines;
@ -321,6 +320,24 @@ configEnvironmentRC_conf(char *config)
} }
} }
/* Load the environment from rc.conf file(s) */
void
configEnvironmentRC_conf(void)
{
static char *configs[] = {
"/etc/rc.conf",
"/etc/rc.conf.site",
"/etc/rc.conf.local",
NULL
};
int i;
for (i = 0; configs[i]; i++) {
if (file_readable(configs[i]))
configReadRC_conf(configs[i]);
}
}
/* Load the environment from a resolv.conf file */ /* Load the environment from a resolv.conf file */
void void
configEnvironmentResolv(char *config) configEnvironmentResolv(char *config)
@ -359,11 +376,15 @@ configRC(dialogMenuItem *unused)
void void
configRC_conf(char *config) configRC_conf(char *config)
{ {
FILE *fp; FILE *rcSite;
char *lines[MAX_LINES], *cp; char *lines[MAX_LINES], *cp;
Variable *v; Variable *v;
int i, nlines, len; int i, nlines, len;
rcSite = fopen("/etc/rc.conf.site", "w");
if (!rcSite)
return;
nlines = readConfig(config, lines, MAX_LINES); nlines = readConfig(config, lines, MAX_LINES);
if (nlines == -1) if (nlines == -1)
return; return;
@ -372,8 +393,11 @@ configRC_conf(char *config)
for (v = VarHead; v; v = v->next) { for (v = VarHead; v; v = v->next) {
for (i = 0; i < nlines; i++) { for (i = 0; i < nlines; i++) {
/* Skip the comments & non-variable settings */ /* Skip the comments & non-variable settings */
if (lines[i][0] == '#' || !(cp = index(lines[i], '='))) if (lines[i][0] == '#' || !(cp = index(lines[i], '='))) {
free(lines[i]);
continue; continue;
}
len = strlen(v->name); len = strlen(v->name);
if (!strncmp(lines[i], v->name, cp - lines[i]) && (cp - lines[i]) == len) { if (!strncmp(lines[i], v->name, cp - lines[i]) && (cp - lines[i]) == len) {
char *cp2, *comment = NULL; char *cp2, *comment = NULL;
@ -389,57 +413,50 @@ configRC_conf(char *config)
} }
} }
free(lines[i]); free(lines[i]);
lines[i] = (char *)malloc(strlen(v->name) + strlen(v->value) + (comment ? strlen(comment) : 0) + 10); lines[i] = (char *)alloca(strlen(v->name) + strlen(v->value) + (comment ? strlen(comment) : 0) + 10);
if (comment) if (comment)
sprintf(lines[i], "%s=\"%s\"%s", v->name, v->value, comment); sprintf(lines[i], "%s=\"%s\"%s", v->name, v->value, comment);
else else
sprintf(lines[i], "%s=\"%s\"\n", v->name, v->value); sprintf(lines[i], "%s=\"%s\"\n", v->name, v->value);
} fputs(lines[i], rcSite);
} /* Stand by for bogus special case handling;
} * we try to dump the interface specs here
*/
if (!strncmp(lines[i], VAR_INTERFACES,
strlen(VAR_INTERFACES))) {
Device **devp;
int j, cnt;
/* Now write it all back out again */ devp = deviceFind(NULL, DEVICE_TYPE_NETWORK);
if (isDebug()) cnt = deviceCount(devp);
msgDebug("Writing configuration changes to %s file..", config); for (j = 0; j < cnt; j++) {
if (Fake) char iname[255], toadd[512];
fp = fdopen(DebugFD, "w"); int k, addit = TRUE;
else {
(void)vsystem("cp %s %s.previous", config, config);
fp = fopen(config, "w");
}
for (i = 0; i < nlines; i++) {
fprintf(fp, lines[i]);
/* Stand by for bogus special case handling - we try to dump the interface specs here */
if (!strncmp(lines[i], VAR_INTERFACES, strlen(VAR_INTERFACES))) {
Device **devp;
int j, cnt;
devp = deviceFind(NULL, DEVICE_TYPE_NETWORK); if (!strncmp(devp[j]->name, "ppp", 3) ||
cnt = deviceCount(devp); !strncmp(devp[j]->name, "tun", 3))
for (j = 0; j < cnt; j++) { continue;
char iname[255], toadd[512];
int k, addit = TRUE;
if (!strncmp(devp[j]->name, "ppp", 3) || !strncmp(devp[j]->name, "tun", 3)) snprintf(iname, 255, "%s%s", VAR_IFCONFIG, devp[j]->name);
continue; if ((cp = variable_get(iname))) {
snprintf(toadd, sizeof toadd, "%s=\"%s\"\n", iname, cp);
snprintf(iname, 255, "%s%s", VAR_IFCONFIG, devp[j]->name); for (k = 0; k < nlines; k++) {
if ((cp = variable_get(iname))) { if (!strcmp(lines[k], toadd)) {
snprintf(toadd, sizeof toadd, "%s=\"%s\"\n", iname, cp); addit = FALSE;
for (k = 0; k < nlines; k++) { break;
if (!strcmp(lines[k], toadd)) { }
addit = FALSE; }
break; if (addit)
fputs(toadd, rcSite);
} }
} }
if (addit)
fprintf(fp, toadd);
} }
} }
else
free(lines[i]);
} }
free(lines[i]);
} }
fclose(fp); fclose(rcSite);
} }
int int

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next * This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite. * generation being essentially a complete rewrite.
* *
* $Id: install.c,v 1.222 1999/01/20 11:56:39 jkh Exp $ * $Id: install.c,v 1.223 1999/01/20 12:31:42 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -1065,7 +1065,7 @@ void
installEnvironment(void) installEnvironment(void)
{ {
if (file_readable("/etc/rc.conf")) if (file_readable("/etc/rc.conf"))
configEnvironmentRC_conf("/etc/rc.conf"); configEnvironmentRC_conf();
if (file_readable("/etc/resolv.conf")) if (file_readable("/etc/resolv.conf"))
configEnvironmentResolv("/etc/resolv.conf"); configEnvironmentResolv("/etc/resolv.conf");
} }

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next * This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite. * generation being slated to essentially a complete rewrite.
* *
* $Id: sysinstall.h,v 1.152 1998/12/22 12:31:25 jkh Exp $ * $Id: sysinstall.h,v 1.153 1999/01/20 12:31:43 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -401,7 +401,7 @@ extern void command_shell_add(char *key, char *fmt, ...);
extern void command_func_add(char *key, commandFunc func, void *data); extern void command_func_add(char *key, commandFunc func, void *data);
/* config.c */ /* config.c */
extern void configEnvironmentRC_conf(char *config); extern void configEnvironmentRC_conf(void);
extern void configEnvironmentResolv(char *config); extern void configEnvironmentResolv(char *config);
extern void configRC_conf(char *config); extern void configRC_conf(char *config);
extern int configFstab(dialogMenuItem *self); extern int configFstab(dialogMenuItem *self);