aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/init.d/httpd
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-11-22 23:06:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-11-22 23:06:40 +0000
commit36dbcb9b377d3b3576ff081f229dd437e84a92bf (patch)
tree0920f5ee656c52738cc894455027d1e3487173ec /package/base-files/default/etc/init.d/httpd
parent627966575eb4c6340e2019ed2c5281cd5c8e2d6d (diff)
downloadmaster-187ad058-36dbcb9b377d3b3576ff081f229dd437e84a92bf.tar.gz
master-187ad058-36dbcb9b377d3b3576ff081f229dd437e84a92bf.tar.bz2
master-187ad058-36dbcb9b377d3b3576ff081f229dd437e84a92bf.zip
move busybox init scripts from base-files into the busybox package and make them depend on busybox menuconfig options
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5620 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 e4f5f48e9c..0000000000
--- 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
-}