summaryrefslogtreecommitdiff
path: root/etc/rc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-03-25 07:25:23 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-03-25 07:25:23 +0000
commitb5acd507f1ab22de36122409342935648982c6c7 (patch)
tree42e0dfb10abab9aa29426c1b72fa3f91e0a5ac37 /etc/rc
parente33ca8f2585c523b8d9a08eaa6bf7dc4ddabb21b (diff)
httpd is now in the tree, and an rc.conf flag turns it on
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc6
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/rc b/etc/rc
index 17b93fefd2e..a192fa960e5 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.68 1998/03/11 18:08:09 millert Exp $
+# $OpenBSD: rc,v 1.69 1998/03/25 07:25:20 deraadt Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -334,6 +334,10 @@ if [ "X${sendmail_flags}" != X"NO" -a -s /etc/sendmail.cf ]; then
echo -n ' sendmail'; /usr/sbin/sendmail ${sendmail_flags}
fi
+if [ "X${httpd_flags}" != X"NO" ]; then
+ echo -n ' httpd'; /usr/sbin/httpd ${httpd_flags}
+fi
+
# $smtpfwdd_flags is imported from /etc/rc.conf;
# If $smtpfwdd_flags == NO, smtpfwdd isn't run.
if [ "X${smtpfwdd_flags}" != X"NO" ]; then