add support for if{down,up} -a and implement proper start/stop/restart for /etc/init...
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 2 Mar 2007 13:21:33 +0000 (13:21 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 2 Mar 2007 13:21:33 +0000 (13:21 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6455 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/base-files/files/etc/init.d/network
package/base-files/files/sbin/ifdown

index 45d5311a7ad64f4eab28f7b607bc80e308216aeb..950b33726a4fd7ddf3fcd7d1f98319401e6097ff 100755 (executable)
@@ -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
+}
index 103309fa841e1a48a357790e14a5591506ec990d..540c69f169115efe2981aa4b050ff1e9f7f6ca5a 100755 (executable)
@@ -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