base-files: reload switch settings on /etc/init.d/network start as well
[openwrt.git] / package / base-files / files / etc / init.d / network
index eab0011..3587c24 100755 (executable)
@@ -2,24 +2,23 @@
 # Copyright (C) 2006 OpenWrt.org
 
 START=40
-STOP=40
+STOP=90
 
 boot() {
        setup_switch() { return 0; }
 
        include /lib/network
        setup_switch
-       [ -e /etc/config/wireless ] || \
+       [ -s /etc/config/wireless ] || \
                /sbin/wifi detect > /etc/config/wireless
        /sbin/wifi up
 }
 
 start() {
-       ifup -a
-       /sbin/wifi up
-}
-
-restart() {
+       setup_switch() { return 0; }
+       
+       include /lib/network
+       setup_switch
        ifup -a
        /sbin/wifi up
 }
@@ -27,3 +26,7 @@ restart() {
 stop() {
        ifdown -a
 }
+
+restart() {
+       start
+}
This page took 0.022426 seconds and 4 git commands to generate.