1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-20 22:48:10 +02:00
openwrt/package/base-files/files/etc/init.d/network

34 lines
414 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
2006-08-02 01:19:54 +02:00
# Copyright (C) 2006 OpenWrt.org
START=40
STOP=40
boot() {
setup_switch() { return 0; }
include /lib/network
setup_switch
[ -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
2008-03-04 16:50:41 +01:00
setup_switch
ifup -a
/sbin/wifi up
}
stop() {
ifdown -a
}