Skip to content

Commit

Permalink
[raspbian] Added wmm and isolate to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Ritwick DSouza committed Aug 11, 2017
1 parent 4ea3bb0 commit 13409f9
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions netjsonconfig/backends/raspbian/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,34 @@
"allOf": [
{
"properties": {
"wmm": {
"type": "boolean",
"title": "WMM (802.11e)",
"description": "enables WMM (802.11e) support; "
"required for 802.11n support",
"default": True,
"format": "checkbox",
"propertyOrder": 8,
},
"isolate": {
"type": "boolean",
"title": "isolate clients",
"description": "isolate wireless clients from one another",
"default": False,
"format": "checkbox",
"propertyOrder": 9,
},
"macfilter": {
"type": "string",
"title": "MAC Filter",
"description": "specifies the mac filter policy, \"disable\" to disable "
"the filter, \"allow\" to treat it as whitelist or "
"\"deny\" to treat it as blacklist",
"enum": [
None,
"accept",
"disable",
"allow",
"deny",
],
"options": {
"enum_titles": [
"disabled",
"accept",
"deny"
]
},
"default": "disable",
"propertyOrder": 15,
},
Expand Down

0 comments on commit 13409f9

Please sign in to comment.