now correctly checks absolute path for src= existance for links
also updated docs to be a bit clearer on symlink behaviour
This commit is contained in:
parent
ff5560f00c
commit
4fd957620a
1 changed files with 8 additions and 4 deletions
12
files/file
12
files/file
|
@ -81,8 +81,8 @@ options:
|
|||
default: null
|
||||
choices: []
|
||||
description:
|
||||
- path of the file to link to (applies only to C(state=link)). Will accept absolute,
|
||||
relative and nonexisting paths. Relative paths are not expanded.
|
||||
- path of the file to link to (applies only to C(state= link or hard)). Will accept absolute,
|
||||
relative and nonexisting (with C(force)) paths. Relative paths are not expanded.
|
||||
seuser:
|
||||
required: false
|
||||
default: null
|
||||
|
@ -266,8 +266,12 @@ def main():
|
|||
|
||||
elif state in ['link','hard']:
|
||||
|
||||
if not os.path.exists(src) and not force:
|
||||
module.fail_json(path=path, src=src, msg='src file does not exist')
|
||||
absrc = src
|
||||
if not os.path.isabs(absrc):
|
||||
absrc = os.path.normpath('%s/%s' % (os.path.dirname(path), absrc))
|
||||
|
||||
if not os.path.exists(absrc) and not force:
|
||||
module.fail_json(path=path, src=src, msg='src file does not exist, use "force=yes" if you really want to create the link: %s' % absrc)
|
||||
|
||||
if state == 'hard':
|
||||
if not os.path.isabs(src):
|
||||
|
|
Loading…
Reference in a new issue