Thanks Craig, It works fine now.
The reason am not using "file" is , it is taking more time to copy file from share than executing the simple command. Thanks, Harish On Monday, May 16, 2016 at 4:59:59 PM UTC+5:30, Craig Dunn wrote: > > > > On Mon, May 16, 2016 at 1:09 PM, Harish Kothuri <harish...@gmail.com > <javascript:>> wrote: > >> >> exec{ 'cmd /c copy /Y "\\shareloc\folder1\folder2\Mysoftware.msi" >> "${pypredest}"': >> > > > Your resource title is enclosed in single quotes which means everything > will be taken literally and your variable will not be interpolated.... > > Something like this would fix that problem... > > exec{ "cmd /c copy /Y \"\\shareloc\folder1\folder2\Mysoftware.msi\" > \"${pypredest}\"": > > Although I'm not sure why you need an exec to do this (disclaimer: I > haven't used windows in years) > > Can you not do this with the file resource? > > file { $pypredest: > ensure => file, > source => '\\shareloc\folder1\folder2\Mysoftware.msi', > } > > > Regards > Craig > > -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/06e45ebe-b15b-40b0-94a3-a6abc03d434b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.