mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-02 07:29:28 +08:00
17 lines
223 B
Bash
Executable File
17 lines
223 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
. /lib/functions.sh
|
|
|
|
START=50
|
|
|
|
DEFAULT=/etc/default/cpulimit
|
|
|
|
|
|
start() {
|
|
/usr/bin/cpulimit.sh start &
|
|
}
|
|
|
|
stop() {
|
|
kill -9 `pidof cpulimit | sed "s/$$//g"`
|
|
}
|