aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-03-02 13:21:33 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-03-02 13:21:33 +0000
commit35d4bb8a94ca87f874b79d3d71da1ec270c3e0a3 (patch)
tree718298e817fb7c90722f863f887adf6fd8beb07d /package
parent4a9d4647cba2791754c216cf997f64dfa97f933e (diff)
downloadmaster-187ad058-35d4bb8a94ca87f874b79d3d71da1ec270c3e0a3.tar.gz
master-187ad058-35d4bb8a94ca87f874b79d3d71da1ec270c3e0a3.tar.bz2
master-187ad058-35d4bb8a94ca87f874b79d3d71da1ec270c3e0a3.zip
add support for if{down,up} -a and implement proper start/stop/restart for /etc/init.d/network
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6455 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/files/etc/init.d/network15
-rwxr-xr-xpackage/base-files/files/sbin/ifdown9
2 files changed, 22 insertions, 2 deletions
diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network
index 45d5311a7a..950b33726a 100755
--- a/package/base-files/files/etc/init.d/network
+++ b/package/base-files/files/etc/init.d/network
@@ -2,7 +2,7 @@
# Copyright (C) 2006 OpenWrt.org
START=40
-start() {
+boot() {
setup_switch() { return 0; }
include /lib/network
@@ -12,3 +12,16 @@ start() {
/sbin/wifi up
}
+start() {
+ ifup -a
+ /sbin/wifi up
+}
+
+restart() {
+ ifup -a
+ /sbin/wifi up
+}
+
+stop() {
+ ifdown -a
+}
diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown
index 103309fa84..540c69f169 100755
--- a/package/base-files/files/sbin/ifdown
+++ b/package/base-files/files/sbin/ifdown
@@ -1,8 +1,15 @@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
-[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
+[ $# = 0 ] && { echo " $0 <group>"; exit; }
+[ "x$1" = "x-a" ] && {
+ config_cb() {
+ [ -z "$2" ] || eval "$0 $2"
+ }
+ config_load network
+ exit
+}
include /lib/network
scan_interfaces