no tmpdir to remove for old ansible versions in fetch command
This commit is contained in:
parent
74b7934e37
commit
e632310fc4
|
@ -157,6 +157,10 @@ class ActionModule(ActionBase):
|
|||
result.update(dict(changed=False, md5sum=local_md5, file=source, dest=dest, checksum=local_checksum))
|
||||
|
||||
finally:
|
||||
try:
|
||||
self._remove_tmp_path(self._connection._shell.tmpdir)
|
||||
except AttributeError:
|
||||
# .tmpdir was added to ShellModule in v2.6.0, so old versions don't have it
|
||||
pass
|
||||
|
||||
return result
|
||||
|
|
Loading…
Reference in New Issue