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:
Lars Kruse 2019-07-19 05:49:51 +02:00
parent d9b1b1ad3f
commit 3e0ecfe678
1 changed files with 8 additions and 4 deletions

View File

@ -15,10 +15,14 @@ config_if() {
echo "up.min 0"
echo "up.negative down"
echo "up.cdef up,8,*"
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"
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() {