mirror of
https://github.com/munin-monitoring/muninlite.git
synced 2025-01-03 11:42:10 +01:00
Fix parsing the available network interface names
Source: patch "230-fix-available-interface-parsing" from OpenWrt Author: Martin Blumenstingl
This commit is contained in:
parent
7b4f376daf
commit
b2366408f6
1 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ RES=""
|
||||||
for PLUG in $PLUGINS
|
for PLUG in $PLUGINS
|
||||||
do
|
do
|
||||||
if [ "$PLUG" = "if_" ]; then
|
if [ "$PLUG" = "if_" ]; then
|
||||||
for INTER in $(grep '^ *\(ppp\|eth\|wlan\|ath\|ra\|ipsec\|tap\|br-\)\([^:]\)\{1,\}:' /proc/net/dev | cut -f1 -d: | sed 's/ //g');
|
for INTER in $(grep -E '^ *(ppp|eth|wlan|ath|ra|ipsec|tap|br-)[^:]{1,}:' /proc/net/dev | cut -f1 -d: | sed 's/ //g');
|
||||||
do
|
do
|
||||||
INTERRES=$(echo $INTER | sed -e 's/\./VLAN/' -e 's/\-/_/')
|
INTERRES=$(echo $INTER | sed -e 's/\./VLAN/' -e 's/\-/_/')
|
||||||
RES="$RES if_$INTERRES"
|
RES="$RES if_$INTERRES"
|
||||||
|
@ -80,7 +80,7 @@ do
|
||||||
eval "config_if_${INTERRES}() { config_if $INTER $@; };"
|
eval "config_if_${INTERRES}() { config_if $INTER $@; };"
|
||||||
done
|
done
|
||||||
elif [ "$PLUG" = "if_err_" ]; then
|
elif [ "$PLUG" = "if_err_" ]; then
|
||||||
for INTER in $(grep '^ *\(ppp\|eth\|wlan\|ath\|ra\|ipsec\|tap\|br-\)\([^:]\)\{1,\}:' /proc/net/dev | cut -f1 -d: | sed 's/ //g');
|
for INTER in $(grep -E '^ *(ppp|eth|wlan|ath|ra|ipsec|tap|br-)[^:]{1,}:' /proc/net/dev | cut -f1 -d: | sed 's/ //g');
|
||||||
do
|
do
|
||||||
INTERRES=$(echo $INTER | sed -e 's/\./VLAN/' -e 's/\-/_/')
|
INTERRES=$(echo $INTER | sed -e 's/\./VLAN/' -e 's/\-/_/')
|
||||||
RES="$RES if_err_$INTERRES"
|
RES="$RES if_err_$INTERRES"
|
||||||
|
|
Loading…
Reference in a new issue