#!/bin/sh # $FreeBSD: ports/www/apache13/files/apache.in,v 1.1 2007/10/01 04:00:08 ache Exp $ # PROVIDE: apache # REQUIRE: LOGIN cleanvar # KEYWORD: shutdown # Define these apache_* variables in one of these files: # /etc/rc.conf # /etc/rc.conf.local # /etc/rc.conf.d/apache # # DO NOT CHANGE THESE DEFAULT VALUES HERE # apache_enable=${apache_enable-"NO"} apache_flags=${apache_flags-""} apache_pidfile=${apache_pidfile-"/var/run/httpd.pid"} . /etc/rc.subr name="apache" rcvar=`set_rcvar` command="/usr/local/sbin/httpd" load_rc_config $name pidfile="${apache_pidfile}" start_precmd="`/usr/bin/limits -e -U www`" start_postcmd="`/usr/bin/limits -e -C daemon`" run_rc_command "$1"