Re: [Puppet Users] nodejs - Running make returns 2 instead of 0

2014-01-15 Thread Björn Becker
Ohhh, you made my day. That shows the problem. We need /bin in PATH for uname. Thanks a lot! Björn Am Mittwoch, 15. Januar 2014 14:39:54 UTC+1 schrieb Ken Barber: > > > This is my exec: > > > > exec {'make nodejs': > > command => "/usr/bin/make", > > creates => "/usr/local/src/n

[Puppet Users] ensure tomcat - duplicated definition

2014-04-23 Thread Björn Becker
Hello, I fight with a tomcat module and try to ensure several tomcat instances: node XY{ include tomcat ensure_tomcats{ "tomcat1": tc_name => "tomcat1", tc_path => "/app/tomcat1/tomcat", version => "7.0.53"; "tomcat2": tc_name => "tomcat2",

[Puppet Users] Re: ensure tomcat - duplicated definition

2014-04-24 Thread Björn Becker
> > or more like your original design, but limited: turn "define download" > into a class that installs only a single version (maybe a separate class > per major version, and just pull in the latest minor of that major release) > and use the include in your defines to avoid du