mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Set default of 'yes' for update_cache, as is in the documentation
This commit is contained in:
@@ -333,7 +333,7 @@ def main():
|
|||||||
argument_spec=dict(
|
argument_spec=dict(
|
||||||
repo=dict(required=True),
|
repo=dict(required=True),
|
||||||
state=dict(choices=['present', 'absent'], default='present'),
|
state=dict(choices=['present', 'absent'], default='present'),
|
||||||
update_cache = dict(aliases=['update-cache'], type='bool'),
|
update_cache = dict(aliases=['update-cache'], type='bool', default='yes'),
|
||||||
),
|
),
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user