Commit c4fea213 by James Cammarata

Merge pull request #11440 from sivel/issue/11430

Check for name or pkg when templating squashed items
parents a75e62b6 65fdcf8b
......@@ -179,15 +179,15 @@ class TaskExecutor:
Squash items down to a comma-separated list for certain modules which support it
(typically package management modules).
'''
if len(items) > 0 and self._task.action in self.SQUASH_ACTIONS:
final_items = []
for item in items:
variables['item'] = item
templar = Templar(loader=self._loader, shared_loader_obj=self._shared_loader_obj, variables=variables)
if self._task.evaluate_conditional(templar, variables):
if templar._contains_vars(self._task.args['name']):
new_item = templar.template(self._task.args['name'])
name = self._task.args.pop('name', None) or self._task.args.pop('pkg', None)
if templar._contains_vars(name):
new_item = templar.template(name)
final_items.append(new_item)
else:
final_items.append(item)
......
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