Fix bug in foregrounding in /etc/init.d/rcS
[openwrt.git] / package / base-files / files / etc / init.d / network
index 45d5311..43d0a84 100755 (executable)
@@ -2,13 +2,34 @@
 # Copyright (C) 2006 OpenWrt.org
 
 START=40
-start() {
+STOP=90
+
+boot() {
        setup_switch() { return 0; }
 
        include /lib/network
        setup_switch
-       [ -e /etc/config/wireless ] || \
+       grep -qs config /etc/config/wireless && {
+               /sbin/wifi up
+       } || {
+               rm -f /etc/config/wireless
                /sbin/wifi detect > /etc/config/wireless
+       }
+}
+
+start() {
+       setup_switch() { return 0; }
+       
+       include /lib/network
+       setup_switch
+       ifup -a
        /sbin/wifi up
 }
 
+stop() {
+       ifdown -a
+}
+
+restart() {
+       start
+}
This page took 0.027091 seconds and 4 git commands to generate.