You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
595 B
23 lines
595 B
umask 027
|
|
DXHOME={{ dx_home }}/dxserver
|
|
PATH=$DXHOME/bin:${PATH}
|
|
LD_LIBRARY_PATH=$DXHOME/bin:$LD_LIBRARY_PATH
|
|
export DXHOME PATH LD_LIBRARY_PATH
|
|
|
|
if [ -z "$LD_LIBRARY_PATH" ]; then
|
|
LD_LIBRARY_PATH={{ java_home }}/lib/i386/native_threads
|
|
else
|
|
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:{{ java_home }}/lib/i386/native_threads
|
|
fi
|
|
export LD_LIBRARY_PATH
|
|
POSIXLY_CORRECT=1
|
|
export POSIXLY_CORRECT
|
|
|
|
# CA Shared Components
|
|
if [ -f /etc/profile.CA ]; then
|
|
. /etc/profile.CA
|
|
if [ ! -z $CALIB ]; then
|
|
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${CALIB}
|
|
export LD_LIBRARY_PATH
|
|
fi
|
|
fi
|
|
|