Skip to content
Snippets Groups Projects
Commit 0eed62e7 authored by MrMM's avatar MrMM
Browse files

quality below (100) is displayed as ( 50), the space must be compensated

parent 1d6e1ef5
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ ONLINE_SSID='Freifunk'
OFFLINE_PREFIX='FF_OFFLINE_' # Use something short to leave space for the nodename
#Is there an active Gateway?
GATEWAY_TQ=`batctl gwl | grep "^=>" | cut -d" " -f3 | tr -d "()"`
GATEWAY_TQ=`batctl gwl | grep "^=>"| cut -d"(" -f2 | cut -d")" -f1 | tr -d " "`
if [ $GATEWAY_TQ -gt 50 ];
then
echo "Gateway TQ is $GATEWAY_TQ node is online"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment