Just a quick question regarding the include_role thing:
It seems that the "name" of the include_role task needs to match the role name, is anybody else seeing the same? For example, if my role is called "myrole", then this doesnt work:
---
- name: Do stuff to stuff
hosts: localhost
tasks:
- name: do the thing
include_role:
name: myrole
While this works:
---
- name: Do stuff to stuff
hosts: localhost
tasks:
- name: myrole
include_role:
name: myrole
btw: this is such an awesome feature. It's gonna fundamentally change how we write playbooks. Thanks!