mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
10a4a4e986
commit
323012be2e
1 changed files with 3 additions and 0 deletions
|
@ -78,6 +78,9 @@ class PlaybookInclude(Base, Conditional, Taggable):
|
|||
for entry in pb._entries:
|
||||
temp_vars = entry.vars.copy()
|
||||
temp_vars.update(new_obj.vars)
|
||||
param_tags = temp_vars.pop('tags', None)
|
||||
if param_tags is not None:
|
||||
entry.tags.extend(param_tags.split(','))
|
||||
entry.vars = temp_vars
|
||||
entry.tags = list(set(entry.tags).union(new_obj.tags))
|
||||
if entry._included_path is None:
|
||||
|
|
Loading…
Reference in a new issue