|
Posted by Mladen Gogala on 02/09/07 13:54
On Thu, 08 Feb 2007 08:39:22 -0800, Slawek wrote:
> I would like to run a script at startup under SuSE 9. I read and
> figured out that it can be done using chkconfig and setting the proper
> run level. The problem I have currently is that I depend on system
> environmental variables being available for PHP. I am using PHP as a
> scripting language (nothing to do with the web), and this PHP script
> is called from the start up bash script, but it cannot retrieve any
> environmental vars at runlevel 3.
>
> When are environmental vars set and at which runlevel? Or should I do
> this some other way?
>
> Thanks,
>
> Slawek
$ php -r 'echo getenv("ORACLE_HOME"),"\n";'
/oracle/product/10g
$
--
http://www.mladen-gogala.com
[Back to original message]
|