Corey Osman wrote : > I need to get the environment variable ORACLE_SID from the OS. I know this > can be done with the following: > > $blah = env("PATH") > > However, the ORACLE_SID variable is only set under the oracle user account. > So I would need a way to login as the oracle account first to retrieve the > ORACLE_SID variable. Is there anyway to get the environment variable from a > user's account instead of the default account puppet runs under?
I'm sorry to not actually be of much help regarding your original question... The thing is that puppet is usually used the other way around, hence this way I use to pre-configure RHEL servers for our bash-using Oracle DBAs : # Oracle profile sourced file file { '/etc/profile.d/oracle.sh': mode => '0755', content => template('/path/to/oracle.sh.erb'), } And the template contains the following : export ORACLE_BASE=/u01/app/oracle export ORACLE_HOME=/u01/app/oracle/oracle/product/<%= version %>/<%= title %><%= oracle_home_suffix %> export ORACLE_SID=<%= oracle_sid %> export TNS_ADMIN=$ORACLE_HOME/network/admin if [ `/usr/bin/id -un` == "oracle" ]; then export PATH=$PATH:$ORACLE_HOME/bin fi Matthias -- Clean custom Red Hat Linux rpm packages : http://freshrpms.net/ Fedora release 14 (Laughlin) - Linux kernel 2.6.35.13-91.fc14.x86_64 Load : 0.01 0.35 0.52 -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@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.