openwrtv3/package/base-files/files/etc/init.d/network
Florian Fainelli 62b0af39c7 Also call setup_switch on network restart
SVN-Revision: 10540
2008-03-02 14:56:13 +00:00

30 lines
362 B
Bash
Executable file

#!/bin/sh /etc/rc.common
# 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()
ifup -a
/sbin/wifi up
}
stop() {
ifdown -a
}