mirror of
https://github.com/munin-monitoring/muninlite.git
synced 2024-12-22 13:52:13 +01:00
Fix error messages on server due to missing ethtool on node
Source: patch "100-fix-no-ethtool" from OpenWrt Author: cshore
This commit is contained in:
parent
d9b1b1ad3f
commit
3e0ecfe678
1 changed files with 8 additions and 4 deletions
|
@ -15,11 +15,15 @@ config_if() {
|
|||
echo "up.min 0"
|
||||
echo "up.negative down"
|
||||
echo "up.cdef up,8,*"
|
||||
if [ -n "$(which ethtool)" ]; then
|
||||
if [ -x "$(which ethtool)" ]; then
|
||||
if ethtool $1 | grep -q Speed; then
|
||||
MAX=$(($(ethtool $1 | grep Speed | sed -e 's/[[:space:]]\{1,\}/ /g' -e 's/^ //' -e 's/M.*//' | cut -d\ -f2) * 1000000))
|
||||
echo "up.max $MAX"
|
||||
echo "down.max $MAX"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
fetch_if() {
|
||||
IINFO=$(grep "$1:" /proc/net/dev | cut -d: -f2 | sed -e 's/ / /g')
|
||||
|
|
Loading…
Reference in a new issue