23 lines
451 B
Bash
Executable File
23 lines
451 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
#
|
|
# start/stop wrtbwmon bandwidth monitor
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: wrtbwmon
|
|
# Required-Start: $network $local_fs $remote_fs
|
|
# Required-Stop: $local_fs $remote_fs
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: iptables-based bandwidth monitor
|
|
### END INIT INFO
|
|
|
|
START=91
|
|
|
|
start(){
|
|
/usr/sbin/wrtbwmon setup /tmp/usage.db
|
|
}
|
|
|
|
stop(){
|
|
/usr/sbin/wrtbwmon remove
|
|
}
|