added possibility to force symlinks to none-existent destination (which might appear later)
This commit is contained in:
parent
4716b779f6
commit
ee813d3bd7
1 changed files with 2 additions and 1 deletions
|
@ -273,7 +273,8 @@ def main():
|
||||||
abs_src = src
|
abs_src = src
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg="absolute paths are required")
|
module.fail_json(msg="absolute paths are required")
|
||||||
if not os.path.exists(abs_src):
|
|
||||||
|
if not os.path.exists(abs_src) and not force:
|
||||||
module.fail_json(path=path, src=src, msg='src file does not exist')
|
module.fail_json(path=path, src=src, msg='src file does not exist')
|
||||||
|
|
||||||
if prev_state == 'absent':
|
if prev_state == 'absent':
|
||||||
|
|
Loading…
Reference in a new issue