mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
win_copy: added fix for win_copy deleting local tmp folder (#37964)
This commit is contained in:
@@ -11,6 +11,7 @@ import base64
|
||||
import json
|
||||
import os
|
||||
import os.path
|
||||
import shutil
|
||||
import tempfile
|
||||
import traceback
|
||||
import zipfile
|
||||
@@ -320,12 +321,10 @@ class ActionModule(ActionBase):
|
||||
)
|
||||
)
|
||||
copy_args.pop('content', None)
|
||||
os.remove(zip_path)
|
||||
|
||||
module_return = self._execute_module(module_name='copy',
|
||||
module_args=copy_args,
|
||||
task_vars=task_vars)
|
||||
os.removedirs(os.path.dirname(zip_path))
|
||||
shutil.rmtree(os.path.dirname(zip_path))
|
||||
return module_return
|
||||
|
||||
def run(self, tmp=None, task_vars=None):
|
||||
|
||||
Reference in New Issue
Block a user