mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #4440 from AndydeCleyre/patch-2
Set default of 'yes' for update_cache, as is in the documentation
This commit is contained in:
commit
6cebfccd7f
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ def main():
|
|||
argument_spec=dict(
|
||||
repo=dict(required=True),
|
||||
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,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue