14 lines
153 B
Bash
Executable File
14 lines
153 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
STOP=99
|
|
|
|
start() {
|
|
wan_ifname=$(uci get network.wan.ifname)
|
|
bwm -i $wan_ifname -t 2 &
|
|
}
|
|
|
|
stop() {
|
|
killall -9 bwm
|
|
}
|