Skip to content
Snippets Groups Projects
Commit 34d48501 authored by Hendrik Lüth's avatar Hendrik Lüth Committed by do9xe
Browse files

fix the data types in the check_site.lua

parent 631403c0
No related branches found
No related tags found
No related merge requests found
...@@ -8,8 +8,8 @@ for _, config in ipairs({'wifi24', 'wifi5'}) do ...@@ -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_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_mcast_rate')
need_number(config .. '.mesh_vlan', false) need_number(config .. '.mesh_vlan', false)
need_number(config .. '.client_disabled', false) need_boolean(config .. '.client_disabled', false)
need_number(config .. '.mesh_disabled', false) need_boolean(config .. '.mesh_disabled', false)
end end
need_boolean('mesh_on_wan', false) need_boolean('mesh_on_wan', false)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment