mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Only unlink the symlink tempfile on error if it was created in the
previous operation.
This commit is contained in:
parent
2156e87e62
commit
e157355fd6
1 changed files with 2 additions and 1 deletions
|
@ -305,7 +305,8 @@ def main():
|
|||
os.symlink(src, tmppath)
|
||||
os.rename(tmppath, path)
|
||||
except OSError, e:
|
||||
os.unlink(tmppath)
|
||||
if os.path.exists(tmppath):
|
||||
os.unlink(tmppath)
|
||||
module.fail_json(path=path, msg='Error while replacing: %s' % str(e))
|
||||
try:
|
||||
if state == 'hard':
|
||||
|
|
Loading…
Reference in a new issue