Hi,
On 18 Aug 2015, at 08:16,
rksr...@gmail.com wrote:
> Please let me know the module for the attached or for " ln -s /usr/local/tools usr/tools”
there is no module for symbolic links.
You want to use the file resource type instead:
file { ‘/usr/tools’:
ensure => link,
target => ‘/usr/local/tools’,
}
hth,
Martin