Only unlink the symlink tempfile on error if it was created in the

previous operation.
This commit is contained in:
Steve Smith 2014-03-20 13:14:24 +01:00
parent 2156e87e62
commit e157355fd6

View file

@ -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':