mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 20:01:25 -07: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:
parent
004eb6992f
commit
650ae65f24
32 changed files with 58 additions and 58 deletions
|
@ -306,8 +306,8 @@ def main():
|
|||
url=dict(required=True, aliases=['oneclick_url']),
|
||||
url_username=dict(required=True, aliases=['oneclick_user']),
|
||||
url_password=dict(required=True, no_log=True, aliases=['oneclick_password']),
|
||||
use_proxy=dict(type='bool', default='yes'),
|
||||
validate_certs=dict(type='bool', default='yes'),
|
||||
use_proxy=dict(type='bool', default=True),
|
||||
validate_certs=dict(type='bool', default=True),
|
||||
),
|
||||
required_if=[('state', 'present', ['community'])],
|
||||
supports_check_mode=True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue