mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
Fix ordering of args to libcloud_storage.download_object module
This commit is contained in:
parent
c7fc0df7fb
commit
c60d7534e0
1 changed files with 1 additions and 1 deletions
|
@ -188,6 +188,6 @@ def file_present(container, name, path, profile, overwrite_existing=False):
|
|||
:type overwrite_existing: ``bool``
|
||||
"""
|
||||
result = __salt__["libcloud_storage.download_object"](
|
||||
path, container, name, profile, overwrite_existing
|
||||
container, name, path, profile, overwrite_existing
|
||||
)
|
||||
return state_result(result, "Downloaded object", name, {})
|
||||
|
|
Loading…
Add table
Reference in a new issue