Has anyone started working on a module for copying files from a file share?
I need to copy files of size greater than 3Mb to a remote system.
I want to ensure I am not duplicating anyone else work.
Thank you,
Brandon Marick
Intel Corporation
Has anyone started working on a module for copying files from a file share?
I need to copy files of size greater than 3Mb to a remote system.
I want to ensure I am not duplicating anyone else work.
Thank you,
Brandon Marick
Intel Corporation
No but… I suggest you take a look at Trond Hindenes’ (not yet merged) win_package which I believe can install files from a network share.
https://github.com/ansible/ansible-modules-extras/pull/713
You are likely to have to pass username and passord to avoid the second hop issue.
Alternatively, set up a web server and fetch files using win_get_url
Hope this helps,
Jon