diff options
Diffstat (limited to 'www/apache13-ssl/files/apache.in')
-rw-r--r-- | www/apache13-ssl/files/apache.in | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/www/apache13-ssl/files/apache.in b/www/apache13-ssl/files/apache.in deleted file mode 100644 index f688bf2eec93..000000000000 --- a/www/apache13-ssl/files/apache.in +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# renamed from ports/www/apache13-ssl/files/apache.sh,v 1.2 2006/02/20 20:47:46 dougb Exp -# - -# PROVIDE: apache -# REQUIRE: NETWORKING SERVERS -# BEFORE: DAEMON -# KEYWORD: shutdown - -# -# Add the following lines to /etc/rc.conf to enable apache: -# apache_enable (bool): Set to "NO" by default. -# Set it to "YES" to enable apache -# apachelimits_enable (bool):Set to "NO" by default. -# Set it to yes to run `limits $limits_args` -# just before apache starts. -# apache_flags (str): Set to "" by default. -# Extra flags passed to start command. -# apachelimits_args (str): Default to "-e -C daemon" -# Arguments of pre-start limits run. -# -. /etc/rc.subr - -name="apache" -rcvar=`set_rcvar` - -start_precmd="apache_precmd" -restart_precmd="apache_checkconfig" -reload_precmd="apache_checkconfig" -command="%%PREFIX%%/sbin/httpsd" -pidfile="/var/run/httpsd.pid" -required_files=%%PREFIX%%/etc/apache/httpsd.conf - -load_rc_config $name - -[ -z "$apache_enable" ] && apache_enable="NO" -[ -z "$apachelimits_enable" ] && apachelimits_enable="NO" -[ -z "$apachelimits_args" ] && apachelimits_args="-e -C daemon" - -apache_checkconfig() -{ - echo "Performing sanity check on apache configuration:" - ${command} -t -} - -apache_precmd() -{ - if checkyesno apachelimits_enable - then - eval `/usr/bin/limits ${apachelimits_args}` 2>/dev/null - else - return 0 - fi - -} - -sig_reload=SIGUSR1 - -extra_commands="reload" -run_rc_command "$1" |