diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /nonworking/apache/apache-2.0.47/init | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'nonworking/apache/apache-2.0.47/init')
-rw-r--r-- | nonworking/apache/apache-2.0.47/init | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/nonworking/apache/apache-2.0.47/init b/nonworking/apache/apache-2.0.47/init index e69de29bb2..7a05c38a9a 100644 --- a/nonworking/apache/apache-2.0.47/init +++ b/nonworking/apache/apache-2.0.47/init @@ -0,0 +1,73 @@ +#!/bin/sh +# +# apache Start the apache HTTP server. +# + +NAME=apache +PATH=/bin:/usr/bin:/sbin:/usr/sbin +DAEMON=/usr/sbin/httpd +SUEXEC=/usr/lib/apache/suexec +PIDFILE=/var/run/$NAME.pid +CONF=/etc/apache/httpd.conf +APACHECTL=/usr/sbin/apachectl + +trap "" 1 +export LANG=C +export PATH + +test -f $DAEMON || exit 0 +test -f $APACHECTL || exit 0 + +# ensure we don't leak environment vars into apachectl +APACHECTL="env -i LANG=${LANG} PATH=${PATH} $APACHECTL" + +if egrep -q -i "^[[:space:]]*ServerType[[:space:]]+inet" $CONF +then + exit 0 +fi + +case "$1" in + start) + echo -n "Starting web server: $NAME" + start-stop-daemon -S -x $DAEMON + ;; + + stop) + echo -n "Stopping web server: $NAME" + start-stop-daemon -K -x $DAEMON + ;; + + reload) + echo -n "Reloading $NAME configuration" + start-stop-daemon -K --signal USR1 -x $DAEMON + ;; + + reload-modules) + echo -n "Reloading $NAME modules" + start-stop-daemon -K + start-stop-daemon -S -x $DAEMON + ;; + + restart) + $0 reload-modules + exit $? + ;; + + force-reload) + $0 reload-modules + exit $? + ;; + + *) + echo "Usage: /etc/init.d/$NAME {start|stop|reload|reload-modules|force-reload|restart}" + exit 1 + ;; +esac + +if [ $? == 0 ]; then + echo . + exit 0 +else + echo failed + exit 1 +fi |