From 5697ebbef575a182841cfff9e722b513f373ec6a Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 8 Sep 2019 16:09:17 +0200 Subject: [PATCH] luci-base: add hostapd/wpa_supplicant cli feature flags Signed-off-by: Jo-Philipp Wich --- modules/luci-base/root/usr/libexec/rpcd/luci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci index e94e3f1f7..ab6a7ecfe 100755 --- a/modules/luci-base/root/usr/libexec/rpcd/luci +++ b/modules/luci-base/root/usr/libexec/rpcd/luci @@ -400,7 +400,7 @@ local methods = { local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192" } if fs.access("/usr/sbin/hostapd") then - rv.hostapd = {} + rv.hostapd = { cli = fs.access("/usr/sbin/hostapd_cli") } local _, feature for _, feature in ipairs(wifi_features) do @@ -410,7 +410,7 @@ local methods = { end if fs.access("/usr/sbin/wpa_supplicant") then - rv.wpasupplicant = {} + rv.wpasupplicant = { cli = fs.access("/usr/sbin/wpa_cli") } local _, feature for _, feature in ipairs(wifi_features) do -- 2.25.1