summaryrefslogtreecommitdiffstats
path: root/package/base-files/files
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
commit84bec9f9cf7cd535c26db35a0aa434d4e395c0a0 (patch)
tree6e8bd50b807ebb42f90437dda262f5b1481ae190 /package/base-files/files
parent3e952891496fe1309fc93bc64c69906227d2e6de (diff)
downloadmaster-31e0f0ae-84bec9f9cf7cd535c26db35a0aa434d4e395c0a0.tar.gz
master-31e0f0ae-84bec9f9cf7cd535c26db35a0aa434d4e395c0a0.tar.bz2
master-31e0f0ae-84bec9f9cf7cd535c26db35a0aa434d4e395c0a0.zip
add support for if{down,up} -a and implement proper start/stop/restart for /etc/init.d/network
SVN-Revision: 6455
Diffstat (limited to 'package/base-files/files')
-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