Commit 7c1d569a by James Cammarata

Make sure tags are pulled out of playbook includes properly

Fixes #9862
parent 54e7c8a3
......@@ -118,6 +118,8 @@ class PlaybookInclude(Base, Taggable):
# rejoin the parameter portion of the arguments and
# then use parse_kv() to get a dict of params back
params = parse_kv(" ".join(items[1:]))
if 'tags' in params:
new_ds['tags'] = params.pop('tags')
if 'vars' in new_ds:
# FIXME: see fixme above regarding merging vars
raise AnsibleParserError("include parameters cannot be mixed with 'vars' entries for include statements", obj=ds)
......
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