diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-01-31 04:36:45 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-01-31 04:36:45 +0000 |
commit | 2eaa947d175f5c6738a4836854ee028bf144b04b (patch) | |
tree | 3c55e8430579eceadc99c3e285234c2fc32bf802 | |
parent | 0e7fe2ade720b539a48d3dcc5d5517066af8cf31 (diff) | |
download | pfsense-2eaa947d175f5c6738a4836854ee028bf144b04b.zip pfsense-2eaa947d175f5c6738a4836854ee028bf144b04b.tar.gz |
Lower threshold to 86. Noticed a scenario where slbd was chewing up
roughtly 91% of the cpu.
-rwxr-xr-x | usr/local/sbin/reset_slbd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/sbin/reset_slbd.sh b/usr/local/sbin/reset_slbd.sh index a15f52d..72ad638 100755 --- a/usr/local/sbin/reset_slbd.sh +++ b/usr/local/sbin/reset_slbd.sh @@ -2,7 +2,7 @@ for items in `ps auxcwwl | awk '/slbd/{print $3}'|awk -F"." '{print $1}'` do - if [ "$items" -gt "99" ]; then + if [ "$items" -gt "86" ]; then killall slbd sleep 2 killall -9 slbd |