blob: 6ea2b2567cb64d8a5958dd5a17cfdaf37b7f24ee (
plain)
1
2
3
4
5
6
7
8
9
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
|