summaryrefslogtreecommitdiffstats
path: root/init.d/httpd
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/httpd')
-rwxr-xr-xinit.d/httpd15
1 files changed, 0 insertions, 15 deletions
diff --git a/init.d/httpd b/init.d/httpd
deleted file mode 100755
index dd1de9c..0000000
--- a/init.d/httpd
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/sbin/runscript
-
-DAEMON=httpd
-start() {
- ebegin "Starting $DAEMON"
- $DAEMON $HTTPD_OPTS
- eend $?
-}
-
-stop () {
- ebegin "Stopping $DAEMON"
- killall $DAEMON
- eend $?
-}
-