Fix the typecast error with BOOLEAN
This commit is contained in:
parent
b8f22589ce
commit
90cd04c157
|
@ -129,7 +129,7 @@ def main():
|
||||||
'values': dict(required=True),
|
'values': dict(required=True),
|
||||||
'state': dict(default='present', choices=['present', 'absent', 'exact']),
|
'state': dict(default='present', choices=['present', 'absent', 'exact']),
|
||||||
'server_uri': dict(default='ldapi:///'),
|
'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_dn': dict(default=None),
|
||||||
'bind_pw': dict(default='', no_log=True),
|
'bind_pw': dict(default='', no_log=True),
|
||||||
},
|
},
|
||||||
|
|
|
@ -95,7 +95,7 @@ def main():
|
||||||
'dn': dict(required=True),
|
'dn': dict(required=True),
|
||||||
'state': dict(default='present', choices=['present', 'absent']),
|
'state': dict(default='present', choices=['present', 'absent']),
|
||||||
'server_uri': dict(default='ldapi:///'),
|
'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_dn': dict(default=None),
|
||||||
'bind_pw': dict(default='', no_log=True),
|
'bind_pw': dict(default='', no_log=True),
|
||||||
},
|
},
|
||||||
|
|
|
@ -92,9 +92,9 @@ def main():
|
||||||
'scope': dict(default='base', choices=['base', 'onelevel', 'subordinate', 'children']),
|
'scope': dict(default='base', choices=['base', 'onelevel', 'subordinate', 'children']),
|
||||||
'filter': dict(default='(objectClass=*)'),
|
'filter': dict(default='(objectClass=*)'),
|
||||||
'attrs': dict(default=None),
|
'attrs': dict(default=None),
|
||||||
'schema': dict(default=False, choices=(BOOLEANS+['True', True, 'False', False])),
|
'schema': dict(default=False, choices=(list(BOOLEANS)+['True', True, 'False', False])),
|
||||||
'server_uri': dict(default='ldapi:///'),
|
'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_dn': dict(default=None),
|
||||||
'bind_pw': dict(default='', no_log=True),
|
'bind_pw': dict(default='', no_log=True),
|
||||||
},
|
},
|
||||||
|
|
|
@ -85,7 +85,7 @@ def main():
|
||||||
argument_spec={
|
argument_spec={
|
||||||
'dn': dict(required=True),
|
'dn': dict(required=True),
|
||||||
'server_uri': dict(default='ldapi:///'),
|
'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_dn': dict(default=None),
|
||||||
'bind_pw': dict(default='', no_log=True),
|
'bind_pw': dict(default='', no_log=True),
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue