Hello,
As I composed one role which partially can be reused in some others I tried the following syntax in playbook:
hosts: test
sudo: True
roles:
- common
- { role: big, tags: [ 'aaa', 'bbb' ]}
But looks like tags functionality is not working. If I run playbook with --tags arg it runs only matching tags, but when I want to list all tags to execute in roles it runs the whole role.
How can I overcome this ?