Skip to content

Commit

Permalink
[chores] Adjusted order of openvpn noauth-cache #177
Browse files Browse the repository at this point in the history
Related to #177
  • Loading branch information
nemesifier committed Mar 7, 2022
1 parent b06331a commit f2e692c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docs/source/backends/openvpn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,14 @@ Required properties:
+--------------------------+---------+--------------+-------------------------------------------------------------+
| ``float`` | boolean | ``False`` | |
+--------------------------+---------+--------------+-------------------------------------------------------------+
| ``auth_nocache`` | boolean | ``False`` | |
+--------------------------+---------+--------------+-------------------------------------------------------------+
| ``fast_io`` | boolean | ``False`` | |
+--------------------------+---------+--------------+-------------------------------------------------------------+
| ``log`` | string | | filesystem path |
+--------------------------+---------+--------------+-------------------------------------------------------------+
| ``verb`` | integer | ``1`` | from ``0`` (disabled) to ``11`` (very verbose) |
+--------------------------+---------+--------------+-------------------------------------------------------------+
| ``auth_nocache`` | boolean | ``False`` | |
+--------------------------+---------+--------------+-------------------------------------------------------------+

Client specific settings
~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
22 changes: 11 additions & 11 deletions netjsonconfig/backends/openvpn/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,17 @@
"format": "checkbox",
"propertyOrder": 43,
},
"auth_nocache": {
"title": "auth nocache",
"description": (
"Immediately forget username/password"
"inputs after they are used"
),
"type": "boolean",
"default": False,
"format": "checkbox",
"propertyOrder": 49,
},
"fast_io": {
"title": "fast IO",
"description": "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a "
Expand Down Expand Up @@ -445,17 +456,6 @@
"description": "Set output verbosity for logging and debugging",
"propertyOrder": 52,
},
"auth_nocache": {
"title": "auth nocache",
"description": (
"Cause OpenVPN to immediately forget username/password"
"inputs after they are used"
),
"type": "boolean",
"default": False,
"format": "checkbox",
"propertyOrder": 53,
},
},
},
"client": {
Expand Down

0 comments on commit f2e692c

Please sign in to comment.