Commit ea5db181 by James Cammarata

Merge branch 'role_path_var' of https://github.com/sergevanginderachter/ansible…

Merge branch 'role_path_var' of https://github.com/sergevanginderachter/ansible into sergevanginderachter-role_path_var
parents 100cb760 7051cdeb
...@@ -373,10 +373,12 @@ class Play(object): ...@@ -373,10 +373,12 @@ class Play(object):
roles = self._build_role_dependencies(roles, [], self.vars) roles = self._build_role_dependencies(roles, [], self.vars)
# give each role an uuid # give each role an uuid and
# make role_path available as variable to the task
for idx, val in enumerate(roles): for idx, val in enumerate(roles):
this_uuid = str(uuid.uuid4()) this_uuid = str(uuid.uuid4())
roles[idx][-2]['role_uuid'] = this_uuid roles[idx][-2]['role_uuid'] = this_uuid
roles[idx][-2]['role_path'] = roles[idx][1]
role_names = [] role_names = []
......
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