diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-25 07:25:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-25 07:25:23 +0000 |
commit | b5acd507f1ab22de36122409342935648982c6c7 (patch) | |
tree | 42e0dfb10abab9aa29426c1b72fa3f91e0a5ac37 /etc/rc | |
parent | e33ca8f2585c523b8d9a08eaa6bf7dc4ddabb21b (diff) |
httpd is now in the tree, and an rc.conf flag turns it on
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |