From 4e4ffa669adb3e997fa713e6375b8b179231909e Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 28 May 2014 11:46:06 -0500 Subject: [PATCH] Correctly examine path for relative links in file module Fixes #7515 Fixes #7537 --- library/files/file | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/library/files/file b/library/files/file index 1306ef5f0ab..d2a20dbb7a5 100644 --- a/library/files/file +++ b/library/files/file @@ -182,10 +182,11 @@ def main(): elif state in ['link','hard']: - absrc = src - if not os.path.isabs(absrc): - absrc = os.path.abspath(src) - + if os.path.isdir(path): + relpath = path + else: + relpath = os.path.dirname(path) + absrc = os.path.normpath('%s/%s' % (relpath, os.path.basename(src))) 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)