diff --git a/src/packages/fff/fff-nodewatcher/Makefile b/src/packages/fff/fff-nodewatcher/Makefile index 02ee78bf..adfab26d 100644 --- a/src/packages/fff/fff-nodewatcher/Makefile +++ b/src/packages/fff/fff-nodewatcher/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=fff-nodewatcher -PKG_VERSION:=43 +PKG_VERSION:=44 PKG_RELEASE:=1 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) diff --git a/src/packages/fff/fff-nodewatcher/files/usr/sbin/nodewatcher b/src/packages/fff/fff-nodewatcher/files/usr/sbin/nodewatcher index e4a9bc94..7a9dbe62 100755 --- a/src/packages/fff/fff-nodewatcher/files/usr/sbin/nodewatcher +++ b/src/packages/fff/fff-nodewatcher/files/usr/sbin/nodewatcher @@ -2,7 +2,7 @@ # Netmon Nodewatcher (C) 2010-2012 Freifunk Oldenburg # License; GPL v3 -SCRIPT_VERSION="43" +SCRIPT_VERSION="44" test -f /tmp/started || exit @@ -30,7 +30,7 @@ else } fi -#this method checks id the logfile has bekome too big and deletes the first X lines +#This method checks if the log file has become too big and deletes the first X lines delete_log() { if [ -f "$SCRIPT_LOGFILE" ]; then if [ "$(find "$SCRIPT_LOGFILE" -printf "%s")" -gt "6000" ]; then @@ -50,7 +50,7 @@ inArray() { return 1 } -#this method generates the crawl data xml file that is beeing fetched by netmon +#This method generates the crawl data XML file that is being fetched by netmon #and provided by a small local httpd crawl() { #Get system data from other locations @@ -199,7 +199,16 @@ crawl() { /ESSID/ { split($0, e, "\""); printf ""e[2]"" } /Freq/{ split($3, f, " "); printf ""f[1]f[2]"" } /Tx-Power/{ split($0, p, "="); sub(/[[:space:]]*$/, "", p[2]); printf ""p[2]"" } - ')"" + ') + + interface_data=$interface_data$(iw dev "${iface}" info 2>/dev/null | awk ' + /ssid/{ split($0, s, " "); printf ""s[2]"" } + /type/ { split($0, t, " "); printf ""t[2]"" } + /channel/{ split($0, c, " "); printf ""c[2]"" } + /width/{ split($0, w, ": "); sub(/ .*/, "", w[2]); printf ""w[2]"" } + ') + + interface_data=$interface_data"" done err "$(date): Collecting information from batman advanced and its interfaces"