gluon/package/gluon-simple-tc/check_site.lua
2015-10-11 19:34:14 +02:00

13 lines
307 B
Lua

local function check_entry(k, _)
assert_uci_name(k)
local prefix = string.format('simple_tc[%q].', k)
need_string(prefix .. 'ifname')
need_boolean(prefix .. 'enabled')
need_number(prefix .. 'limit_egress')
need_number(prefix .. 'limit_ingress')
end
need_table('simple_tc', check_entry)