[packages] 6tunnel: move init/config files to the right place
[openwrt.git] / package / base-files / files / etc / init.d / network
index 45d5311..2a11666 100755 (executable)
@@ -2,13 +2,28 @@
 # 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() {
+       ifup -a
+       /sbin/wifi up
+}
+
+stop() {
+       ifdown -a
+}
This page took 0.020787 seconds and 4 git commands to generate.