I would disagree with your summary, but I think you are right... We have three hosts in the equation. The machine we are running ansible on (ansibleServer) the machine we are performing tasks on (inventoryServer) and a delegate machine (delegateServer)
- task: blah blah blah would cause ansibleServer to run a task on the inventoryServer - task: blah blah blah delegate_to: delegateServer should cause ansibleServer to run the task on the delegateServer on behalf of the inventoryServer. So - fetch: ... delegate_to: delegateServer SHOULD fetch a file from delegateServer to ansibleServer rather than from inventoryServer. If not then there is a bug in my opinion. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/40fb3e8d-f6ff-4b0f-9f20-664d3be18e45%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
