mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 02:51:03 +00:00
Update multibandwidth
I will update more changes in the next days
This commit is contained in:
parent
a1cc26f2d3
commit
1ae4ac09da
1 changed files with 36 additions and 36 deletions
|
@ -107,7 +107,7 @@ for host in $hosts; do
|
|||
VALUE=`echo "$SPEED" | sed 's/.$//'`
|
||||
RATE=`echo "$VALUE * 1048576" | bc -l`
|
||||
|
||||
if [ $(echo "$RATE" >= "$max_mbps" | bc >/dev/null && echo "no" || echo "yes") = "yes" ]; then
|
||||
if [ `echo "$RATE > $max_mbps" | bc` -eq "1" ]; then
|
||||
echo "$max_mbps"
|
||||
else
|
||||
echo "$RATE"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue