net/mwan3: fix indentation
Fix indentation. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
parent
7962bfd3df
commit
3b33e01791
1 changed files with 10 additions and 10 deletions
|
@ -118,18 +118,18 @@ main() {
|
||||||
if [ $host_up_count -lt $reliability ]; then
|
if [ $host_up_count -lt $reliability ]; then
|
||||||
case "$track_method" in
|
case "$track_method" in
|
||||||
ping)
|
ping)
|
||||||
if [ $check_quality -eq 0 ]; then
|
if [ $check_quality -eq 0 ]; then
|
||||||
ping -I $DEVICE -c $count -W $timeout -s $size -q $track_ip &> /dev/null
|
ping -I $DEVICE -c $count -W $timeout -s $size -q $track_ip &> /dev/null
|
||||||
result=$?
|
result=$?
|
||||||
|
else
|
||||||
|
ping_result="$(ping -I $DEVICE -c $count -W $timeout -s $size -q $track_ip | tail -2)"
|
||||||
|
loss="$(echo "$ping_result" | grep "packet loss" | cut -d "," -f3 | awk '{print $1}' | sed -e 's/%//')"
|
||||||
|
if [ "$loss" -eq 100 ]; then
|
||||||
|
latency=999999
|
||||||
else
|
else
|
||||||
ping_result="$(ping -I $DEVICE -c $count -W $timeout -s $size -q $track_ip | tail -2)"
|
latency="$(echo "$ping_result" | grep -E 'rtt|round-trip' | cut -d "=" -f2 | cut -d "/" -f2 | cut -d "." -f1)"
|
||||||
loss="$(echo "$ping_result" | grep "packet loss" | cut -d "," -f3 | awk '{print $1}' | sed -e 's/%//')"
|
|
||||||
if [ "$loss" -eq 100 ]; then
|
|
||||||
latency=999999
|
|
||||||
else
|
|
||||||
latency="$(echo "$ping_result" | grep -E 'rtt|round-trip' | cut -d "=" -f2 | cut -d "/" -f2 | cut -d "." -f1)"
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
arping)
|
arping)
|
||||||
arping -I $DEVICE -c $count -w $timeout -q $track_ip &> /dev/null
|
arping -I $DEVICE -c $count -w $timeout -q $track_ip &> /dev/null
|
||||||
|
|
Loading…
Reference in a new issue