Hello,
I have following Problem on ansible 2.5.0. I try to copy a folder from my ansible-server(debian) to a windows 10 client using winrm. the playbook itself works pefectly. the problem is, that it has to copy to 20 machines when running the playbook and it stucks after 5th machine. when re-running the playbook the next 5 machines get there files and its stucks afterward.
the output after the copying from the 5 machines was fine looks like this:
OSError: [Errno 2] No such file or directory: ‘/root/.ansible/tmp/ansible-local-16474ZG5NC1/tmpbhEdPb’
fatal: [MACHINE-IP-ADDRESS]: FAILED! => {
“changed”: true,
“dest”: “D:\DESTPATH”,
“msg”: “failed to create tmp zip file: [Errno 2] No such file or directory: ‘/root/.ansible/tmp/ansible-local-16474ZG5NC1/tmpbhEdPb’”,
“operation”: “folder_copy”,
“src”: “/SOURCE/PATH/FOLDER”
}
can anyone help to make this working in one step?