add missing include in restart
[openwrt/svn-archive/archive.git] / package / base-files / files / etc / init.d / network
index 45d5311a7ad64f4eab28f7b607bc80e308216aeb..6b1f13c2faee63815c3609a2184de66026a784b0 100755 (executable)
@@ -2,13 +2,30 @@
 # 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() {
+       include /lib/network
+       setup_switch
+       ifup -a
+       /sbin/wifi up
+}
+
+stop() {
+       ifdown -a
+}