diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-15 16:58:09 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-15 16:58:09 +0000 |
commit | b2106dae6fd33a152343316ce6a231d9acd6ac3d (patch) | |
tree | 93e96beed18aef8fa2dde311a2b523cc28315af2 /www/mod_php3 | |
parent | Path on master site has changed (diff) |
Install an apache.sh startup file in /usr/local/etc/rc.d/
Now that apache_httpd is gone from /etc/sysconfig, this is the canonical
way to make apache start automatically in a new system installation.
Notes
Notes:
svn path=/head/; revision=3225
Diffstat (limited to 'www/mod_php3')
-rw-r--r-- | www/mod_php3/Makefile | 8 | ||||
-rw-r--r-- | www/mod_php3/pkg-plist | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/www/mod_php3/Makefile b/www/mod_php3/Makefile index f527a3d7112c..0804ca7b31f2 100644 --- a/www/mod_php3/Makefile +++ b/www/mod_php3/Makefile @@ -3,7 +3,7 @@ # Date created: Fri Aug 25 16:42:36 CDT 1995 # Whom: erich@rrnet.com # -# $Id: Makefile,v 1.10 1996/05/19 22:21:42 ache Exp $ +# $Id: Makefile,v 1.11 1996/05/20 07:37:06 asami Exp $ # DISTNAME= apache_1.0.5 @@ -20,4 +20,10 @@ EXTRACT_ONLY= ${DISTNAME}.tar.gz post-extract: cp ${DISTDIR}/mod_env.c ${WRKSRC}/src +post-install: + @echo "Installing ${PREFIX}/etc/rc.d/apache.sh startup file." + @echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/apache.sh + @echo "[ -x /usr/local/sbin/httpd ] && /usr/local/sbin/httpd && echo -n ' httpd'" >> ${PREFIX}/etc/rc.d/apache.sh + @chmod 751 ${PREFIX}/etc/rc.d/apache.sh + .include <bsd.port.mk> diff --git a/www/mod_php3/pkg-plist b/www/mod_php3/pkg-plist index cf13ab2ef10d..ae2bda3c3d17 100644 --- a/www/mod_php3/pkg-plist +++ b/www/mod_php3/pkg-plist @@ -1,3 +1,5 @@ +etc/rc.d/apache.sh +@unexec rm %D/etc/rc.d/apache.sh sbin/httpd www/cgi-bin www/data |