Re: [ansible-project] roles with pre_tasks and post_task

2014-01-30 Thread Paul Durivage
Hi Adam, I suggest taking this to the developer list for further discussion. Features and ideas are regularly discussed there with the Ansible team. https://groups.google.com/forum/#!forum/ansible-devel On Wed, Jan 29, 2014 at 5:50 PM, Adam Heath a...@brainfood.com wrote: I have a patch

Re: [ansible-project] roles with pre_tasks and post_task

2014-01-30 Thread Adam Heath
Oh, oops, my bad, I wasn't aware there was a -dev list. On 01/30/2014 04:40 PM, Paul Durivage wrote: Hi Adam, I suggest taking this to the developer list for further discussion. Features and ideas are regularly discussed there with the Ansible team.

[ansible-project] roles with pre_tasks and post_task

2014-01-29 Thread Adam Heath
I have a patch locally that enables pre and post processing for roles. The directory names are pre_tasks and post_tasks, of course. The flow is: - hosts: targets roles: - role-1 - role-2 pre_tasks: - name: one tasks: - name: two post_tasks: - name: three and evaluates