Roles that don't use tags get ignored

Hello,

I developed a series of roles that accept some common tags (e.g.
create, destroy, etc). I also have a "common" role that doesn't make
use of tags, all its tasks should run regardless.

If I specify the roles like this:

No the --tags/-t flag is meant to 'run ONLY these tags', in 1.9 (which
you are using as it also introduced 'untagged') and above you can also
tag the tasks in the common role with 'always' which means it will
always run unless you explicitly --skip-tags always.

That makes sense, thank you!

Giovanni

actually you can even tag the whole role by passing tags: ['always']
into the role entry in the play so you do not need to do each task.