diff options
author | cvs2git <cvs2git> | 2006-08-23 22:25:40 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2006-08-23 22:25:40 +0000 |
commit | 58d093219cf60264550b8c34649d9f3190eda042 (patch) | |
tree | 10418dd70b52416a5f52da8e17d8e282d914595d /install/redhat/es3/httpd-init | |
parent | 3ce7691203a7737406bf2d4442f7fd84b81f847e (diff) |
This commit was manufactured by cvs2svn to create tagAFTER_FINAL_MASONIZE
'AFTER_FINAL_MASONIZE'.
Diffstat (limited to 'install/redhat/es3/httpd-init')
-rw-r--r-- | install/redhat/es3/httpd-init | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/install/redhat/es3/httpd-init b/install/redhat/es3/httpd-init deleted file mode 100644 index dca95cfdd..000000000 --- a/install/redhat/es3/httpd-init +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -# -# Startup script for the Apache Web Server -# -# chkconfig: - 85 15 -# description: Apache is a World Wide Web server. It is used to serve \ -# HTML files and CGI. -# processname: httpd -# Source function library. - -# Path to the apachectl script, server binary, and short-form for messages. -apachectl=/usr/local/apache/bin/apachectl -prog=httpd -RETVAL=0 - -start() { - echo -n $"Starting $prog: " - $apachectl startssl - RETVAL=$? -} -stop() { - echo -n $"Stopping $prog: " - $apachectl stop - RETVAL=$? -} - -# See how we were called. -case "$1" in - start) - start - ;; - stop) - stop - ;; - restart) - stop - sleep 3 - start - ;; - graceful|help|configtest) - $apachectl $@ - RETVAL=$? - ;; - *) - echo $"Usage: $prog {start|stop|restart|graceful|help|configtest}" - exit 1 -esac - -exit $RETVAL - |