768d49a428
SVN-Revision: 31732
23 lines
245 B
Bash
Executable file
23 lines
245 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
START=40
|
|
STOP=90
|
|
|
|
start() {
|
|
setup_switch() { return 0; }
|
|
|
|
include /lib/network
|
|
setup_switch
|
|
|
|
ifup -a
|
|
grep -qs config /etc/config/wireless && {
|
|
/sbin/wifi up
|
|
}
|
|
}
|
|
|
|
restart() {
|
|
start
|
|
}
|
|
|
|
stop() {
|
|
/sbin/ifdown -a
|
|
}
|