15 lines
166 B
Bash
15 lines
166 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=88
|
|
|
|
log() {
|
|
logger -t "TEXTING" "$@"
|
|
}
|
|
|
|
start()
|
|
{
|
|
uci set bwmon.general.enabled="1"
|
|
uci commit bwmon
|
|
/usr/lib/bwmon/textbw.sh &
|
|
}
|