From: Martin Weinelt Date: Fri, 24 Sep 2021 21:01:29 +0000 (+0200) Subject: prometheus-node-exporter-lua: fix broken control flow X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=093f3443ce74bde451a706abf8bb21ba33f52764;p=openwrt-packages.git prometheus-node-exporter-lua: fix broken control flow Signed-off-by: Martin Weinelt --- diff --git a/utils/prometheus-node-exporter-lua/Makefile b/utils/prometheus-node-exporter-lua/Makefile index fb3fa682f..d39a5dfe0 100644 --- a/utils/prometheus-node-exporter-lua/Makefile +++ b/utils/prometheus-node-exporter-lua/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=prometheus-node-exporter-lua -PKG_VERSION:=2021.07.24 +PKG_VERSION:=2021.09.24 PKG_RELEASE:=1 PKG_MAINTAINER:=Etienne CHAMPETIER diff --git a/utils/prometheus-node-exporter-lua/files/usr/lib/lua/prometheus-collectors/hostapd_stations.lua b/utils/prometheus-node-exporter-lua/files/usr/lib/lua/prometheus-collectors/hostapd_stations.lua index a176b02e8..f843dda18 100644 --- a/utils/prometheus-node-exporter-lua/files/usr/lib/lua/prometheus-collectors/hostapd_stations.lua +++ b/utils/prometheus-node-exporter-lua/files/usr/lib/lua/prometheus-collectors/hostapd_stations.lua @@ -19,7 +19,7 @@ local function get_wifi_interface_labels() local bss_idx = -1 for line in hostapd_status:gmatch("[^\r\n]+") do local name, value = string.match(line, "(.+)=(.+)") - elseif name == "freq" then + if name == "freq" then hostapd["freq"] = value elseif name == "channel" then hostapd["channel"] = value