diff options
Diffstat (limited to 'init.d/httpd')
-rwxr-xr-x | init.d/httpd | 15 |
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 $? -} - |