Commit c706cc8b by James Tanner

Addresses #5341 Expand home directories when searching for roles in ansible-playbook

parent 5b4e8679
......@@ -164,6 +164,7 @@ class Play(object):
if C.DEFAULT_ROLES_PATH:
search_locations = C.DEFAULT_ROLES_PATH.split(os.pathsep)
for loc in search_locations:
loc = os.path.expanduser(loc)
possible_paths.append(utils.path_dwim(loc, orig_path))
for path_option in possible_paths:
......
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