Commit a0f91f2a by jctanner

Merge pull request #5576 from xyrix/symlink-bug-fix

fixed bug causing symlinks to fail in the host_vars, group_vars etc dire...
parents 253fe7be e1f5b801
......@@ -73,7 +73,7 @@ def _load_vars_from_path(path, results):
# symbolic link
if stat.S_ISLNK(pathstat.st_mode):
try:
target = os.readlink(path)
target = os.path.realpath(path)
except os.error, err2:
raise errors.AnsibleError("The symbolic link at %s "
"is not readable: %s. Please check its permissions."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment