I have this task in an Ansible playbook:
- name: Copy volumes.zip to local
fetch:
src: "/tmp/volumes.zip"
dest: "/home/user/volumes/"
flat: true
It never ends. volumes.zip
size is about 500MB. After debugging, I can see connection is done ok. In fact, I have some previous tasks in the same playbook (for generating that volumes.zip
file) and they work fine.
What is happening? Is there any alternative to fetch
module?