mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
only require absolute paths for hardlinks
This commit is contained in:
parent
eab6737209
commit
684921c1c1
1 changed files with 7 additions and 6 deletions
|
@ -280,13 +280,14 @@ def main():
|
||||||
|
|
||||||
elif state in ['link','hard']:
|
elif state in ['link','hard']:
|
||||||
|
|
||||||
if os.path.isabs(src):
|
if state == 'hard':
|
||||||
abs_src = src
|
if os.path.isabs(src):
|
||||||
else:
|
abs_src = src
|
||||||
module.fail_json(msg="absolute paths are required")
|
else:
|
||||||
|
module.fail_json(msg="absolute paths are required")
|
||||||
|
|
||||||
if not os.path.exists(abs_src) and not force:
|
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':
|
||||||
changed = True
|
changed = True
|
||||||
|
|
Loading…
Reference in a new issue