Fixed BOOLEANS rendering in docsite
This commit is contained in:
parent
04cde60d14
commit
23b98dae3e
2 changed files with 3 additions and 5 deletions
|
@ -62,7 +62,7 @@ options:
|
|||
first checking if already configured.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
config:
|
||||
description:
|
||||
- The module, by default, will connect to the remote device and
|
||||
|
@ -176,4 +176,3 @@ from ansible.module_utils.netcfg import *
|
|||
from ansible.module_utils.junos import *
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ options:
|
|||
without first checking if already configured.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
backup:
|
||||
description:
|
||||
- When this argument is configured true, the module will backup
|
||||
|
@ -54,7 +54,7 @@ options:
|
|||
the root of the playbook directory.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
config:
|
||||
description:
|
||||
- The module, by default, will connect to the remote device and
|
||||
|
@ -178,4 +178,3 @@ from ansible.module_utils.netcfg import *
|
|||
from ansible.module_utils.junos import *
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
|
Loading…
Reference in a new issue