summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/luci-base/root/usr/libexec/rpcd/luci6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci
index 1938e3e966..dccdbee900 100755
--- a/modules/luci-base/root/usr/libexec/rpcd/luci
+++ b/modules/luci-base/root/usr/libexec/rpcd/luci
@@ -165,7 +165,11 @@ local methods = {
local ok, fd = pcall(io.open, "/usr/share/fw3/helpers.conf", "r")
local rv = {}
- if ok then
+ if not (ok and fd) then
+ ok, fd = pcall(io.open, "/usr/share/firewall4/helpers", "r")
+ end
+
+ if ok and fd then
local entry
while true do