diff options
Diffstat (limited to 'www/apache6/files/apache.sh')
-rw-r--r-- | www/apache6/files/apache.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/www/apache6/files/apache.sh b/www/apache6/files/apache.sh new file mode 100644 index 00000000000..6ea2b2567cb --- /dev/null +++ b/www/apache6/files/apache.sh @@ -0,0 +1,10 @@ +#!/bin/sh +# +# $NetBSD: apache.sh,v 1.1.1.1 1999/07/23 17:53:29 itojun Exp $ +# +if [ -x @PREFIX@/sbin/httpd -a -f @PREFIX@/etc/httpd/httpd.conf ] +then + @PREFIX@/sbin/apachectl start >/dev/null + echo -n ' apache' +fi +exit 0 |