fix the data types in the check_site.lua

This commit is contained in:
Hendrik Lüth 2015-05-01 05:36:14 +02:00 committed by do9xe
parent 631403c0a9
commit 34d48501cf
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ for _, config in ipairs({'wifi24', 'wifi5'}) do
need_string_match(config .. '.mesh_bssid', '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$')
need_number(config .. '.mesh_mcast_rate')
need_number(config .. '.mesh_vlan', false)
need_number(config .. '.client_disabled', false)
need_number(config .. '.mesh_disabled', false)
need_boolean(config .. '.client_disabled', false)
need_boolean(config .. '.mesh_disabled', false)
end
need_boolean('mesh_on_wan', false)