Hi,
I am trying to copy a file from puppet server's module to the Windows machine client
The following snippet is from init.pp of a module:
file {'copyingDB':
ensure => file,
path => 'C:/dump/dump1.zip',
require => File['dump'],
mode => 0777,
}
I found that, when the file size is small, the file is copied and the snippet works properly. But in my case the file size is of 5gb.
The following error is encountered:
...
...
Error: /Stage[main]/dump/File[copyingDB]: Failed to generate addition
al resources using 'eval_generate: end of file reached
Error: /Stage[main]/dump1/File[copyingDB]: Could not evaluate: end of
.....
...
The network bandwidth b/w server and client is of 100mbps.
Kindly provide assistance if I forgot something.
Regards,
Pranay Manwatkar