Hi, I'm trying to use puppet variables in exec command as follows
$pypredest = 'C:\PuppetSWT\Mysoftware.msi' exec{ 'cmd /c copy /Y "\\shareloc\folder1\folder2\Mysoftware.msi" "${pypredest}"': path => $::path, creates => $pypredest, logoutput => true, } Output from agent: It says EXEC [ 'cmd /c copy /Y "\\shareloc\folder1\folder2\Mysoftware.msi" "${pypredest}"'] executed succesfully. But i don't the see the file copied to C:\PuppetSWT\ folder. I get the file copied when i don't use variable. $pypredest = 'C:\PuppetSWT\Mysoftware.msi' exec{ 'cmd /c copy /Y "\\shareloc\folder1\folder2\Mysoftware.msi" "C:\PuppetSWT\Mysoftware.msi" ': path => $::path, creates => $pypredest, logoutput => true, } -Thanks -- 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/386ce2e0-d196-44cd-80ce-b699d8912f08%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.