Todd,

This isn't correct. "export $ZENHOME" is the same as "export /usr/local/zenoss" which isn't what you want.

For example:

      $ FOO=bar                  # not exported
      $ /bin/env | grep FOO      # test
      $ export $FOO              # oops... dollar expansion
      $ /bin/env | grep FOO      # test
      $ export FOO               # got it!
      $ /bin/env | grep FOO
      FOO=bar

-Eric

Todd Michael Hebert wrote:
I had to put in:

ZENHOME=/usr/local/zenoss
PYTHONPATH=/usr/local/zenoss/lib/python
export $ZENHOME
export $PYTHONPATH

Todd M. Hebert

[EMAIL PROTECTED] wrote:
i edited the rc.local file and put the following in it:
    export ZENHOME=/usr/local/zenoss
    export PYTHONPATH=$ZENHOME/lib/python
    export PATH=$ZENHOME/bin:$PATH
per the instructions


however, when i restarted the machine, and logged in as root
if i type in   $ZENHOME it goes to /bin/

i have to re-type export ZENHOME=/usr/local/zenoss for the path to be correct..

any suggestions ?

_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to