summaryrefslogtreecommitdiff
path: root/www/apache13/files/apache.sh
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2007-10-01 04:00:08 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2007-10-01 04:00:08 +0000
commit0da62a9b463fdc604d3919b1fb6a5355f2271a7c (patch)
tree22f39c6a068f9c7bcaa1f336e01c9c43cb787766 /www/apache13/files/apache.sh
parent1. Remove limit stacksize line for SysV shared memory size. (diff)
Use new style of startup script install
Use dirrmtry when remove some directories Respect DOCSDIR in pkg-plist (with small mod from me) PR: 116776 Submitted by: Alexander Logvinov <ports@logvinov.com>
Diffstat (limited to 'www/apache13/files/apache.sh')
-rw-r--r--www/apache13/files/apache.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/www/apache13/files/apache.sh b/www/apache13/files/apache.sh
deleted file mode 100644
index 1bea1411b8be..000000000000
--- a/www/apache13/files/apache.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-
-# 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"}
-
-. %%RC_SUBR%%
-
-name="apache"
-rcvar=`set_rcvar`
-command="%%PREFIX%%/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"