ffmap-backend/mkmap.sh

21 lines
653 B
Bash
Raw Normal View History

2012-02-17 02:09:21 +01:00
#!/bin/bash
DEST=$1
2012-06-06 01:58:31 +02:00
GWL=`batctl gwl -n`
2012-02-17 02:09:21 +01:00
2012-06-06 01:58:31 +02:00
SELF=`echo "$GWL" | head -n 1 | sed -r -e 's@^.*MainIF/MAC: [^/]+/([0-9a-f:]+).*$@\1@'`
GWS=`(echo "$GWL" | tail -n +2 | grep -v '^No' | sed 's/=>//' | awk '{ print $1 }') | while read a; do echo -n "-g $a "; done`
if [ `cat /sys/class/net/bat0/mesh/gw_mode` = server ]; then
GWS="$GWS -g $SELF"
fi
batctl vd json | "$(dirname "$0")"/bat2nodes.py -a "$(dirname "$0")"/aliases.json $GWS - > $DEST/nodes.json.new
batctl vd json | "$(dirname "$0")"/bat2geomap.py -a "$(dirname "$0")"/aliases.json - > $DEST/geomap.kml.new
2012-05-12 16:44:27 +02:00
mv $DEST/nodes.json.new $DEST/nodes.json
mv $DEST/geomap.kml.new $DEST/geomap.kml
2012-02-17 02:09:21 +01:00