|
|
@ -149,7 +149,7 @@ class IncludedFile:
|
|
|
|
inc_file = IncludedFile(include_file, include_variables, original_task)
|
|
|
|
inc_file = IncludedFile(include_file, include_variables, original_task)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
# template the included role's name here
|
|
|
|
# template the included role's name here
|
|
|
|
role_name = include_variables.get('name', include_variables.get('role', None))
|
|
|
|
role_name = include_variables.pop('name', include_variables.pop('role', None))
|
|
|
|
if role_name is not None:
|
|
|
|
if role_name is not None:
|
|
|
|
role_name = templar.template(role_name)
|
|
|
|
role_name = templar.template(role_name)
|
|
|
|
|
|
|
|
|
|
|
@ -158,7 +158,7 @@ class IncludedFile:
|
|
|
|
for from_arg in new_task.FROM_ARGS:
|
|
|
|
for from_arg in new_task.FROM_ARGS:
|
|
|
|
if from_arg in include_variables:
|
|
|
|
if from_arg in include_variables:
|
|
|
|
from_key = from_arg.replace('_from', '')
|
|
|
|
from_key = from_arg.replace('_from', '')
|
|
|
|
new_task._from_files[from_key] = templar.template(include_variables[from_arg])
|
|
|
|
new_task._from_files[from_key] = templar.template(include_variables.pop(from_arg))
|
|
|
|
|
|
|
|
|
|
|
|
inc_file = IncludedFile(role_name, include_variables, new_task, is_role=True)
|
|
|
|
inc_file = IncludedFile(role_name, include_variables, new_task, is_role=True)
|
|
|
|
|
|
|
|
|
|
|
|