diff options
Diffstat (limited to 'network/apache2/rc.httpd')
-rw-r--r-- | network/apache2/rc.httpd | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/network/apache2/rc.httpd b/network/apache2/rc.httpd deleted file mode 100644 index 3be9b79143..0000000000 --- a/network/apache2/rc.httpd +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# -# /etc/rc.d/rc.apache2 -# -# Start/stop/restart the Apache web server. -# -# To make Apache start automatically at boot, make this -# file executable: chmod 755 /etc/rc.d/rc.httpd2 -# - -APACHE_CTL=/usr/sbin/apachectl - -case "$1" in - 'start') - $APACHE_CTL -k start - ;; - - 'stop') - $APACHE_CTL -k stop - ;; - - 'graceful-stop') - $APACHE_CTL -k graceful - ;; - - 'restart') - $APACHE_CTL -k restart - ;; - - 'graceful-restart') - $APACHE_CTL -k graceful-restart - ;; - - *) - echo "Usage: $0 {start|stop|graceful-stop|restart|graceful-restart}" - ;; -esac |