Merge pull request #6597 from tarka/handle-uncreated-symlink-tmpfile
Handle missing symlink tempfile
This commit is contained in:
commit
38c3332b8a
1 changed files with 2 additions and 1 deletions
|
@ -309,6 +309,7 @@ def main():
|
||||||
os.symlink(src, tmppath)
|
os.symlink(src, tmppath)
|
||||||
os.rename(tmppath, path)
|
os.rename(tmppath, path)
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
|
if os.path.exists(tmppath):
|
||||||
os.unlink(tmppath)
|
os.unlink(tmppath)
|
||||||
module.fail_json(path=path, msg='Error while replacing: %s' % str(e))
|
module.fail_json(path=path, msg='Error while replacing: %s' % str(e))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue