Re: [ansible-project] Re: Add stdout and stdout_lines to the results registered by the yum module

2014-11-12 Thread Brian Coca
Actually the yum module output is more consistent with what you would expect registering a var using with_items. Both modules use a special optimization in which they slurp the whole list instead of executing it one at a time. Also I think you are comparing outputs on different operations. In any

Re: [ansible-project] Re: Add stdout and stdout_lines to the results registered by the yum module

2014-11-12 Thread Sankalp Khare
Hi Brian, I am concerned with ansible-playbook, and so I'll restrict my observations to the context of playbook executions only. I examined the source code and there is a marked difference in the way the apt and yum modules deal with the outputs captured from their respective actions. The di