The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for various modern desktop and server operating systems, such as UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server which provides HTTP services in sync with the current HTTP standards. This package tracks 2.4.x release.
57 lines
914 B
Bash
57 lines
914 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: apache.sh,v 1.1.1.1 2012/04/13 18:50:49 ryoon Exp $
|
|
#
|
|
# PROVIDE: apache
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
#
|
|
# You will need to set some variables in /etc/rc.conf to start Apache:
|
|
#
|
|
# apache=YES
|
|
|
|
name="apache"
|
|
|
|
if [ -f /etc/rc.subr ]
|
|
then
|
|
. /etc/rc.subr
|
|
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/httpd"
|
|
command_args="-k start"
|
|
pidfile="@VARBASE@/run/httpd.pid"
|
|
required_files="@PKG_SYSCONFDIR@/httpd.conf"
|
|
extra_commands="reload"
|
|
reload_cmd="$command -k graceful"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
else
|
|
ctl_command="@PREFIX@/sbin/apachectl"
|
|
|
|
if [ ! -x ${ctl_command} ]; then
|
|
return
|
|
fi
|
|
|
|
case "$1" in
|
|
start)
|
|
@ECHO@ "Starting ${name}."
|
|
${ctl_command} start
|
|
;;
|
|
stop)
|
|
@ECHO@ "Stopping ${name}."
|
|
${ctl_command} stop
|
|
;;
|
|
reload)
|
|
${ctl_command} graceful
|
|
;;
|
|
restart)
|
|
"$0" stop
|
|
sleep 10
|
|
"$0" start
|
|
;;
|
|
*)
|
|
${ctl_command} "$1"
|
|
;;
|
|
esac
|
|
fi
|