modules/freifunk: fix basics cbi model
authorManuel Munz <munz@comuno.net>
Sat, 30 May 2015 21:01:24 +0000 (23:01 +0200)
committerManuel Munz <munz@comuno.net>
Sat, 30 May 2015 21:01:24 +0000 (23:01 +0200)
modules/luci-mod-freifunk/luasrc/model/cbi/freifunk/basics.lua

index 019e404..0d3d971 100644 (file)
@@ -5,7 +5,7 @@
 local fs = require "nixio.fs"
 local util = require "luci.util"
 local uci = require "luci.model.uci".cursor()
-local profiles = "/etc/config/profile_"
+local profiles = "/etc/config/profile_*"
 
 m = Map("freifunk", translate ("Community"))
 c = m:section(NamedSection, "community", "public", nil, translate("These are the basic settings for your local wireless community. These settings define the default values for the wizard and DO NOT affect the actual configuration of the router."))
@@ -14,7 +14,7 @@ community = c:option(ListValue, "name", translate ("Community"))
 community.rmempty = false
 
 local profile
-for profile in fs.dir(profiles) do
+for profile in fs.glob(profiles) do
        local name = uci:get_first(profile, "community", "name") or "?"
        community:value(profile, name)
 end