1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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

This commit is contained in:
James Tanner 2013-12-18 23:31:03 -05:00
parent c0aa02144f
commit 1ef9930b80

View file

@ -164,6 +164,7 @@ class Play(object):
if C.DEFAULT_ROLES_PATH: if C.DEFAULT_ROLES_PATH:
search_locations = C.DEFAULT_ROLES_PATH.split(os.pathsep) search_locations = C.DEFAULT_ROLES_PATH.split(os.pathsep)
for loc in search_locations: for loc in search_locations:
loc = os.path.expanduser(loc)
possible_paths.append(utils.path_dwim(loc, orig_path)) possible_paths.append(utils.path_dwim(loc, orig_path))
for path_option in possible_paths: for path_option in possible_paths: