Environment configuration

If you need to source some environment variables, you can modify ${OKA_INSTALL_DIR}/conf/environment.sh to source whatever is needed. This might be useful for example if the commands to access the job scheduler are defined in your /etc/profile.d.

#!/bin/bash
# Environment settings
# Add here all environment variables needed for OKA to work properly (e.g. to access JobScheduler bins).
# You can also directly source a bash script.
export PATH="$PATH:/opt/local/bin"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/opt/local/lib"
export MANPATH="${MANPATH}:/opt/local/share/man"
export TERM=xterm