base-files: Update /etc/init.d/fstab with new location of swapon and swapoff (they...
[openwrt-10.03/.git] / package / base-files / files / etc / init.d / network
index 45d5311a7ad64f4eab28f7b607bc80e308216aeb..e77db02517decf8345699140cad726cc0169dfcc 100755 (executable)
@@ -2,13 +2,32 @@
 # Copyright (C) 2006 OpenWrt.org
 
 START=40
-start() {
+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
 }
 
+start() {
+       ifup -a
+       /sbin/wifi up
+}
+
+restart() {
+       setup_switch() { return 0; }
+       
+       include /lib/network
+       setup_switch
+       ifup -a
+       /sbin/wifi up
+}
+
+stop() {
+       ifdown -a
+}