55aeabae10
SVN-Revision: 28499
20 lines
200 B
Bash
Executable file
20 lines
200 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
START=40
|
|
STOP=90
|
|
|
|
start() {
|
|
setup_switch() { return 0; }
|
|
|
|
include /lib/network
|
|
setup_switch
|
|
|
|
ubus call network reload
|
|
}
|
|
|
|
restart() {
|
|
start
|
|
}
|
|
|
|
stop() {
|
|
/sbin/ifdown -a
|
|
}
|