mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix an issue causing win_copy to fail
It seems win_copy can fail because `will_change` was not returned in the dictionary when doing a query. This is an easy fix to get it working again.
This commit is contained in:
parent
982e322287
commit
96da0047ac
1 changed files with 2 additions and 2 deletions
|
@ -479,13 +479,13 @@ class ActionModule(ActionBase):
|
||||||
result.update(query_return)
|
result.update(query_return)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
if query_return['will_change'] is False:
|
if query_return.get('will_change') is False:
|
||||||
# no changes need to occur
|
# no changes need to occur
|
||||||
result['failed'] = False
|
result['failed'] = False
|
||||||
result['changed'] = False
|
result['changed'] = False
|
||||||
return result
|
return result
|
||||||
|
|
||||||
if query_return['zip_available'] is True and result['operation'] != 'file_copy':
|
if query_return.get('zip_available') is True and result['operation'] != 'file_copy':
|
||||||
# if the PS zip utils are available and we need to copy more than a
|
# if the PS zip utils are available and we need to copy more than a
|
||||||
# single file/folder, create a local zip file of all the changed
|
# single file/folder, create a local zip file of all the changed
|
||||||
# files and send that to the server to be expanded
|
# files and send that to the server to be expanded
|
||||||
|
|
Loading…
Reference in a new issue