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

pull/5576/head
jay 11 years ago
parent 78ec7c736f
commit e1f5b801cf

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

Loading…
Cancel
Save