fixed issue with tmp file (path can include filename) and added missing
else which made it try to link x2
This commit is contained in:
parent
4fd957620a
commit
a395eb3aba
1 changed files with 9 additions and 8 deletions
17
files/file
17
files/file
|
@ -301,7 +301,7 @@ def main():
|
|||
if changed and not module.check_mode:
|
||||
if prev_state != 'absent':
|
||||
# try to replace atomically
|
||||
tmppath = ".%s.%s.%s.tmp" % (path,os.getpid(),time.time())
|
||||
tmppath = '/'.join([os.path.dirname(path), ".%s.%s.tmp" % (os.getpid(),time.time())])
|
||||
try:
|
||||
if state == 'hard':
|
||||
os.link(src,tmppath)
|
||||
|
@ -311,13 +311,14 @@ def main():
|
|||
except OSError, e:
|
||||
os.unlink(tmppath)
|
||||
module.fail_json(path=path, msg='Error while replacing: %s' % str(e))
|
||||
try:
|
||||
if state == 'hard':
|
||||
os.link(src,path)
|
||||
else:
|
||||
os.symlink(src, path)
|
||||
except OSError, e:
|
||||
module.fail_json(path=path, msg='Error while linking: %s' % str(e))
|
||||
else:
|
||||
try:
|
||||
if state == 'hard':
|
||||
os.link(src,path)
|
||||
else:
|
||||
os.symlink(src, path)
|
||||
except OSError, e:
|
||||
module.fail_json(path=path, msg='Error while linking: %s' % str(e))
|
||||
|
||||
changed = module.set_fs_attributes_if_different(file_args, changed)
|
||||
module.exit_json(dest=path, src=src, changed=changed)
|
||||
|
|
Loading…
Reference in a new issue