]> git.pld-linux.org Git - packages/apache.git/commitdiff
unused
authorankry <ankry@pld-linux.org>
Sun, 4 May 2003 19:47:43 +0000 (19:47 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    httpd.init -> 1.4

httpd.init [deleted file]

diff --git a/httpd.init b/httpd.init
deleted file mode 100755 (executable)
index dc3dc3b..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-#
-# Startup script for the Apache Web Server
-#
-# chkconfig: 345 85 15
-# description: Apache is a World Wide Web server.  It is used to serve \
-#             HTML files and CGI.
-# processname: httpd
-# pidfile: /var/run/httpd.pid
-# config: /etc/httpd/conf/access.conf
-# config: /etc/httpd/conf/httpd.conf
-# config: /etc/httpd/conf/srm.conf
-
-
-# Source function library.
-. /etc/rc.d/init.d/functions
-
-# See how we were called.
-case "$1" in
-  start)
-       echo -n "Starting httpd: "
-       daemon httpd
-       echo
-       touch /var/lock/subsys/httpd
-       ;;
-  stop)
-       echo -n "Shutting down http: "
-       killproc httpd
-       echo
-       rm -f /var/lock/subsys/httpd
-       rm -f /var/run/httpd.pid
-       ;;
-  status)
-       status httpd
-       ;;
-  restart)
-       $0 stop
-       $0 start
-       ;;
-  reload)
-       msg_reloading httpd
-       killproc httpd -HUP
-       ;;
-  *)
-       msg_usage "$0 {start|stop|restart|reload|status}"
-       exit 1
-esac
-
-exit 0
This page took 0.047404 seconds and 4 git commands to generate.