mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
Merge pull request #5384 from sfromm/cleantmpdir
Make sure action plugin copy cleans up tmp dir
This commit is contained in:
commit
d3cc5bd649
1 changed files with 3 additions and 0 deletions
|
@ -125,6 +125,9 @@ class ActionModule(object):
|
||||||
changed = False
|
changed = False
|
||||||
diffs = []
|
diffs = []
|
||||||
module_result = {"changed": False}
|
module_result = {"changed": False}
|
||||||
|
# Remove tmp path since a new one is created below. Should be empty.
|
||||||
|
if tmp.find("tmp") != -1:
|
||||||
|
self.runner._low_level_exec_command(conn, "rm -rf %s > /dev/null 2>&1" % tmp, tmp)
|
||||||
for source_full, source_rel in source_files:
|
for source_full, source_rel in source_files:
|
||||||
# We need to get a new tmp path for each file, otherwise the copy module deletes the folder.
|
# We need to get a new tmp path for each file, otherwise the copy module deletes the folder.
|
||||||
tmp = self.runner._make_tmp_path(conn)
|
tmp = self.runner._make_tmp_path(conn)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue