My puppet server is on a virtual machine.
I have scripts and large executables that take up volume that are on an NFS server.
So I would like to add a puppet mount, this one pointing to an NFS server.
When I do it, on my agent it seems not to find the file, I have the error "Could not retrieve information from environment production"
My NFS mount point: /etc/puppetlabs/puppet/extra_files_windows/files
the path of the file on the server is:
/etc/puppetlabs/puppet/extra_files_windows/files/deploy929.ps1
The puppet mount pount point configuration:
cat /etc/puppetlabs/puppet/fileserver.conf
[extra_files_windows]
path /etc/puppetlabs/puppet/extra_files_windows
file { 'C:/temp/deploy929.ps1':
ensure => 'file',
source => 'puppet:///extra_files_windows/deploy929.ps1',
}
How could I do ?
Thanks in advance,
R