fixed bug causing symlinks to fail in the host_vars, group_vars etc directories

This commit is contained in:
jay 2014-01-10 16:32:41 +00:00
parent 78ec7c736f
commit e1f5b801cf

View file

@ -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."