diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-25 16:14:14 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-25 16:14:14 +0000 |
commit | e37b7aa508ee5d88427e4aab465c08709f82022d (patch) | |
tree | 362a027ae84ad5901954465bf3b415bb85e36261 /package/busybox/files/httpd | |
parent | d7cb237729dd9f1df5f9b793e79a0aa4199d2a54 (diff) |
[package] busybox: disable httpd applet
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20432 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/files/httpd')
-rwxr-xr-x | package/busybox/files/httpd | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/package/busybox/files/httpd b/package/busybox/files/httpd deleted file mode 100755 index 3714a02de5..0000000000 --- a/package/busybox/files/httpd +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2006 OpenWrt.org - -START=50 -HTTPD_BIN="/usr/sbin/httpd" - -system_config() { - local cfg="$1" - - config_get hostname "$cfg" hostname -} - -httpd_config() { - local cfg="$1" - local c_file port realm home args - - config_get c_file "$cfg" c_file - [ -n "$c_file" -a -f "$c_file" ] && append args "-c \"$c_file\"" - config_get port "$cfg" port - append args "-p ${port:-80}" - config_get home "$cfg" home - home="${home:-/www}" - [ -d "$home" ] || return 1 - append args "-h \"$home\"" - config_get realm "$cfg" realm - realm="${realm:-$hostname}" - append args "-r \"$realm\"" - eval "$HTTPD_BIN $args" -} - -start() { - [ -x "$HTTPD_BIN" ] || return 1 - - unset hostname - config_load system - config_foreach system_config system - hostname="${hostname:-OpenWrt}" - - unset args - config_load httpd - [ "$?" != "0" ] && { - uci_set_default httpd <<EOF -config 'httpd' - option 'port' '80' - option 'home' '/www' -EOF - config_load httpd - } - config_foreach httpd_config httpd -} - -stop() { - killall httpd -} |