mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Allowing multiple tags to be specified in include's tags argument.
This commit is contained in:
parent
50dfd4b057
commit
8eea1c7e01
1 changed files with 1 additions and 1 deletions
|
@ -489,7 +489,7 @@ class StrategyBase:
|
||||||
# error so that users know not to specify them both ways
|
# error so that users know not to specify them both ways
|
||||||
tags = temp_vars.pop('tags', [])
|
tags = temp_vars.pop('tags', [])
|
||||||
if isinstance(tags, string_types):
|
if isinstance(tags, string_types):
|
||||||
tags = [ tags ]
|
tags = tags.split(',')
|
||||||
if len(tags) > 0:
|
if len(tags) > 0:
|
||||||
if len(b._task_include.tags) > 0:
|
if len(b._task_include.tags) > 0:
|
||||||
raise AnsibleParserError("Include tasks should not specify tags in more than one way (both via args and directly on the task). Mixing tag specify styles is prohibited for whole import hierarchy, not only for single import statement",
|
raise AnsibleParserError("Include tasks should not specify tags in more than one way (both via args and directly on the task). Mixing tag specify styles is prohibited for whole import hierarchy, not only for single import statement",
|
||||||
|
|
Loading…
Reference in a new issue