On Tue, Dec 14, 2010 at 9:42 AM, Adrian <tofan.adr...@gmail.com> wrote: > Hello , > > 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 ...
Make a fake new puppetd that does what you want: $ cat /usr/local/bin/puppetd #!/bin/sh set -e export JAVA_HOME=whatever # OR . /etc/profile exec /usr/bin/puppetd "$@" -- 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.