base-files: port init.d/led to new config_get
[openwrt/openwrt.git] / package / base-files / files / etc / init.d / network
index 950b33726a4fd7ddf3fcd7d1f98319401e6097ff..e77db02517decf8345699140cad726cc0169dfcc 100755 (executable)
@@ -2,12 +2,14 @@
 # Copyright (C) 2006 OpenWrt.org
 
 START=40
+STOP=40
+
 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
 }
@@ -18,6 +20,10 @@ start() {
 }
 
 restart() {
+       setup_switch() { return 0; }
+       
+       include /lib/network
+       setup_switch
        ifup -a
        /sbin/wifi up
 }