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:
Amin Vakil 2020-06-22 18:26:35 +04:30 committed by GitHub
parent 004eb6992f
commit 650ae65f24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 58 additions and 58 deletions

View file

@ -166,14 +166,14 @@ def main():
api_host=dict(required=True),
api_user=dict(required=True),
api_password=dict(no_log=True),
validate_certs=dict(type='bool', default='no'),
validate_certs=dict(type='bool', default=False),
node=dict(),
src=dict(type='path'),
template=dict(),
content_type=dict(default='vztmpl', choices=['vztmpl', 'iso']),
storage=dict(default='local'),
timeout=dict(type='int', default=30),
force=dict(type='bool', default='no'),
force=dict(type='bool', default=False),
state=dict(default='present', choices=['present', 'absent']),
)
)