diff options
Diffstat (limited to 'trunk/templates/vserver-legacy/vserver-legacy.d/etc/rc.d/rc.httpd')
-rw-r--r-- | trunk/templates/vserver-legacy/vserver-legacy.d/etc/rc.d/rc.httpd | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/trunk/templates/vserver-legacy/vserver-legacy.d/etc/rc.d/rc.httpd b/trunk/templates/vserver-legacy/vserver-legacy.d/etc/rc.d/rc.httpd deleted file mode 100644 index 00b8837..0000000 --- a/trunk/templates/vserver-legacy/vserver-legacy.d/etc/rc.d/rc.httpd +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -# -# /etc/rc.d/rc.httpd -# -# Start/stop/restart the Apache web server. -# -# To make Apache start automatically at boot, make this -# file executable: chmod 755 /etc/rc.d/rc.httpd -# - -case "$1" in - 'start') - /usr/sbin/apachectl start ;; - 'stop') - /usr/sbin/apachectl stop ;; - 'restart') - /usr/sbin/apachectl restart ;; - *) - echo "usage $0 start|stop|restart" ;; -esac - |