Here is what I managed to do: I was forced to replace package {"buildr":ensure=>installed....} with :
$java_home = "/usr/lib/jvm/java-1.5.0-sun" exec { install_buildr: command => "echo 'export JAVA_HOME=$java_home;gem install -y buildr'|/bin/bash", path => "/usr/local/bin:/usr/bin:/usr/sbin:/bin", require => Package["sun-java5-jdk"], unless => "gem list buildr|grep buildr" } 1. it may be possible to initialize $java_home from /etc/profile but I guess that is not that important 2. I am not sure how it will handle errors as the commands are piped to bash Thank you all for the suggestions. >> >> >> >> There is a way to source /etc/profile inside puppet on demand? >> >> My problem is that I install Java, afterwards I set JAVA_HOME variable >> in /etc/profile. >> >> After Java is installed, a gem which depends on Java starts to >> install ... but as it needs JAVA_HOME environment to be set, it fails. >> >> I am not sure what can I do ... -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.