summaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/init.d/httpd
diff options
context:
space:
mode:
Diffstat (limited to 'package/base-files/default/etc/init.d/httpd')
-rwxr-xr-xpackage/base-files/default/etc/init.d/httpd13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/base-files/default/etc/init.d/httpd b/package/base-files/default/etc/init.d/httpd
deleted file mode 100755
index e4f5f48e9..000000000
--- a/package/base-files/default/etc/init.d/httpd
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh /etc/rc.common
-# Copyright (C) 2006 OpenWrt.org
-
-start() {
- include /lib/network
- scan_interfaces
- config_get ifname wan hostname
- [ -d /www ] && httpd -p 80 -h /www -r ${hostname:-OpenWrt}
-}
-
-stop() {
- killall httpd
-}