2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

Merge pull request #638 from niyawe/patch-1

Added handling of multiple lxc.network.veth.pair-lines
This commit is contained in:
Steve Schnepp 2016-10-08 13:46:46 +02:00 committed by GitHub
commit 00b3735dfc

View File

@ -66,14 +66,16 @@ for guest in `ls $lxcpath`; do
continue; continue;
fi fi
if [ -f "$lxcpath/$guest/config" ]; then if [ -f "$lxcpath/$guest/config" ]; then
device=`grep '^lxc\.network\.veth\.pair[ \t]*=[ \t]*' $lxcpath/$guest/config | \ devices=`grep '^lxc\.network\.veth\.pair[ \t]*=[ \t]*' $lxcpath/$guest/config | \
awk '{ split($0, a, /=/); gsub(/[ \t]/, "", a[2]); print a[2]; }'` awk '{ split($0, a, /=/); gsub(/[ \t]/, "", a[2]); print a[2]; }'`
if [ -n "$device" ]; then if [ -n "$devices" ]; then
device_re=`echo $device | sed -e 's/\./\\\\./g'` for device in $devices; do
if [ `grep -c "^ *$device_re:" /proc/net/dev` -eq 1 ]; then device_re=`echo $device | sed -e 's/\./\\\\./g'`
actives="$actives $guest" if [ `grep -c "^ *$device_re:" /proc/net/dev` -eq 1 ]; then
eval "dev_$(clean_fieldname $guest)=$device" actives="$actives $guest"
fi eval "dev_$(clean_fieldname $guest)=$device"
fi
done
fi fi
fi fi
done done