X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=modules%2Fadmin-full%2Fluasrc%2Fmodel%2Fcbi%2Fadmin_system%2Fleds.lua;h=5074a73396570f6c0ee9b6fc079a2df302b367c1;hp=0acb7479bda4541d2c190fa836f1f2b9ef6553b2;hb=6e390b7691419655d0e5e05b3c342059f45364ac;hpb=6901e28cfc1c6e10394f27af346f5269b4918555 diff --git a/modules/admin-full/luasrc/model/cbi/admin_system/leds.lua b/modules/admin-full/luasrc/model/cbi/admin_system/leds.lua index 0acb7479b..5074a7339 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_system/leds.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_system/leds.lua @@ -15,7 +15,6 @@ m = Map("system", translate("leds"), translate("leds_desc")) local sysfs_path = "/sys/class/leds/" local leds = {} -leds[1] = "moep" if luci.fs.access(sysfs_path) then for k, v in pairs(luci.fs.dir(sysfs_path)) do @@ -53,8 +52,7 @@ s:option(Flag, "default").rmempty = true trigger = s:option(ListValue, "trigger") ---local triggers = luci.fs.readfile(sysfs_path .. leds[1] .. "/trigger") -triggers = "[none] netdev heartbeat default-on timer" +local triggers = luci.fs.readfile(sysfs_path .. leds[1] .. "/trigger") for t in triggers:gmatch("[%w-]+") do trigger:value(t, translate("system_led_trigger_" .. t:gsub("-", ""))) end