summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-10-27 02:12:58 +0000
committerjkh <jkh@FreeBSD.org>1995-10-27 02:12:58 +0000
commit865bb9f87b00f16b8ddf41f73a7c16e4dc909274 (patch)
tree3c80446bd168dc4b4ca1f700181ec036addfb95d /release
parent3eab55251f7d458f45909fdfeea2005e6de02aff (diff)
downloadFreeBSD-src-865bb9f87b00f16b8ddf41f73a7c16e4dc909274.zip
FreeBSD-src-865bb9f87b00f16b8ddf41f73a7c16e4dc909274.tar.gz
Clean up some last bogons with the WEB server setup (now that I'm far
enough along to worry about such things!).
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/apache.c16
-rw-r--r--release/sysinstall/package.c4
2 files changed, 11 insertions, 9 deletions
diff --git a/release/sysinstall/apache.c b/release/sysinstall/apache.c
index f7c1763..39814c5 100644
--- a/release/sysinstall/apache.c
+++ b/release/sysinstall/apache.c
@@ -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.3 1995/10/22 23:20:44 jkh Exp $
+ * $Id: apache.c,v 1.5 1995/10/26 08:55:27 jkh Exp $
*
* Copyright (c) 1995
* Coranth Gryphon. All rights reserved.
@@ -396,9 +396,6 @@ installApache(char *unused)
msgConfirm("Since you elected to install the WEB server, we'll now add the\n"
"Apache HTTPD package and set up a few configuration files.");
i = package_add(APACHE_PACKAGE);
- if (i == RET_SUCCESS)
- i = apacheOpenDialog();
-
if (i != RET_SUCCESS) {
msgConfirm("Hmmmmm. Looks like we weren't able to fetch the Apache WEB server\n"
"package. You may wish to fetch and configure it by hand by looking\n"
@@ -407,6 +404,12 @@ installApache(char *unused)
return (i);
}
+ i = apacheOpenDialog();
+ if (i != RET_SUCCESS) {
+ msgConfirm("Configuration of the Apache WEB server was cancelled per\n"
+ "user request.");
+ return i;
+ }
/*** Fix defaults for invalid value ***/
maxcon = atoi(tconf.maxcon);
if (maxcon <= 0)
@@ -443,9 +446,7 @@ installApache(char *unused)
sprintf(file,"%s/welcome.html",tconf.docroot);
if (! file_readable(file))
{
- msgNotify("Creating sample web page...");
- sleep(1);
-
+ dialog_clear();
tptr = msgGetInput(NULL,
"What is your company name?");
if (tptr && strlen(tptr))
@@ -453,6 +454,7 @@ installApache(char *unused)
else
strcpy(company,"our Web Page");
+ msgNotify("Creating sample web page...");
fptr = fopen(file,"w");
if (fptr)
{
diff --git a/release/sysinstall/package.c b/release/sysinstall/package.c
index 114e171..9a2028c 100644
--- a/release/sysinstall/package.c
+++ b/release/sysinstall/package.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: package.c,v 1.18 1995/10/24 02:18:18 jkh Exp $
+ * $Id: package.c,v 1.20 1995/10/26 08:56:08 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -72,7 +72,7 @@ package_extract(Device *dev, char *name)
/* Check to make sure it's not already there */
if (!vsystem("pkg_info -e %s", name)) {
- msgDebug("package %s marked as already installed - return SUCCESS.\n");
+ msgDebug("package %s marked as already installed - return SUCCESS.\n", name);
return RET_SUCCESS;
}
OpenPOWER on IntegriCloud