From 093f3443ce74bde451a706abf8bb21ba33f52764 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 24 Sep 2021 23:01:29 +0200 Subject: [PATCH] prometheus-node-exporter-lua: fix broken control flow Signed-off-by: Martin Weinelt --- utils/prometheus-node-exporter-lua/Makefile | 2 +- .../usr/lib/lua/prometheus-collectors/hostapd_stations.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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