> This is my exec:
>
> exec {'make nodejs':
> command => "/usr/bin/make",
> creates => "/usr/local/src/node/out/Release/node",
> cwd => "/usr/local/src/node",
> path => ["/usr/bin", "/usr/sbin"],
> require => Exec['configure nodejs'],
> }
>
> Do you got any idea?
Try adding the parameter logoutput => on_failure to the 'exec' and
re-run puppet. It should drop the output of the make command to the
log so you can see any errors that might have been occurring.
http://docs.puppetlabs.com/references/latest/type.html#exec-attribute-logoutput
ken.