luci/modules/admin-full/root/etc/init.d/luci_bwc

15 lines
120 B
Text
Raw Normal View History

#!/bin/sh /etc/rc.common
START=95
STOP=95
BWC=/usr/bin/luci-bwc
start() {
$BWC -d
}
stop() {
killall ${BWC##*/}
}