Fix the typecast error with BOOLEAN
This commit is contained in:
parent
b8f22589ce
commit
90cd04c157
4 changed files with 5 additions and 5 deletions
|
@ -85,7 +85,7 @@ def main():
|
|||
argument_spec={
|
||||
'dn': dict(required=True),
|
||||
'server_uri': dict(default='ldapi:///'),
|
||||
'start_tls': dict(default='false', choices=(BOOLEANS+['True', True, 'False', False])),
|
||||
'start_tls': dict(default='false', choices=(list(BOOLEANS)+['True', True, 'False', False])),
|
||||
'bind_dn': dict(default=None),
|
||||
'bind_pw': dict(default='', no_log=True),
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue