Skip to content

Commit 884aa4c

Browse files
author
Ritwick DSouza
committed
[raspbian] Added wmm and isolate to schema
1 parent 418f20d commit 884aa4c

1 file changed

Lines changed: 19 additions & 9 deletions

File tree

netjsonconfig/backends/raspbian/schema.py

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,34 @@
1010
"allOf": [
1111
{
1212
"properties": {
13+
"wmm": {
14+
"type": "boolean",
15+
"title": "WMM (802.11e)",
16+
"description": "enables WMM (802.11e) support; "
17+
"required for 802.11n support",
18+
"default": True,
19+
"format": "checkbox",
20+
"propertyOrder": 8,
21+
},
22+
"isolate": {
23+
"type": "boolean",
24+
"title": "isolate clients",
25+
"description": "isolate wireless clients from one another",
26+
"default": False,
27+
"format": "checkbox",
28+
"propertyOrder": 9,
29+
},
1330
"macfilter": {
1431
"type": "string",
1532
"title": "MAC Filter",
1633
"description": "specifies the mac filter policy, \"disable\" to disable "
1734
"the filter, \"allow\" to treat it as whitelist or "
1835
"\"deny\" to treat it as blacklist",
1936
"enum": [
20-
None,
21-
"accept",
37+
"disable",
38+
"allow",
2239
"deny",
2340
],
24-
"options": {
25-
"enum_titles": [
26-
"disabled",
27-
"accept",
28-
"deny"
29-
]
30-
},
3141
"default": "disable",
3242
"propertyOrder": 15,
3343
},

0 commit comments

Comments
 (0)