mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
collection: Change default='no's and 'yes's to default=False and default=True (#556)
* Change default={'no','yes'} to default={False,True}
* Add changelog
* Remove changelog
This commit is contained in:
@@ -97,7 +97,7 @@ def main():
|
||||
wait_for_ring=dict(default=False, type='int'),
|
||||
wait_for_service=dict(
|
||||
required=False, default=None, choices=['kv']),
|
||||
validate_certs=dict(default='yes', type='bool'))
|
||||
validate_certs=dict(default=True, type='bool'))
|
||||
)
|
||||
|
||||
command = module.params.get('command')
|
||||
|
||||
Reference in New Issue
Block a user