f7d6813e0c
- Add --list (-l), --listid (-li) and --listenv (-le) options. - Add and rework many scripts in etc/envmng.d directory...
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# $RCSfile: tux80a,v $
|
|
# $Revision: 1.2 $
|
|
# $Name: $
|
|
# $Date: 2009/01/13 13:27:53 $
|
|
# $Author: agibert $
|
|
|
|
# EnvMng Environment configuration
|
|
#
|
|
# description: Tuxedo 8.0a
|
|
#-------------------------------------------------------------------------------
|
|
|
|
case "$1" in
|
|
*profile)
|
|
export TUXDIR=/home/logiciel/tuxedo/tuxedo80a
|
|
export EXPLTUX=$TARGET_HOME/appli/expl/tuxedo
|
|
export CONFIGTUX=$EXPLTUX/config
|
|
export TUXCONFIG=$CONFIGTUX/tuxconfig
|
|
export LOGTUX=$EXPLTUX/log
|
|
export FSCONFIG=$CONFIGTUX/tlog/TLOG
|
|
|
|
export FIELDTBLS=tpadm,evt_mib,std.fml,field.fml
|
|
export FIELDTBLS32=$FIELDTBLS
|
|
export FLDTBLDIR=$TUXDIR/udataobj
|
|
export FLDTBLDIR32=$FLDTBLDIR
|
|
|
|
#----------------------------------------------------------------------------
|
|
# PATH definitions
|
|
#----------------------------------------------------------------------------
|
|
path=$TUXDIR/bin
|
|
export PATH=$(envmng_path_add "$PATH" "$path")
|
|
|
|
shlib_path=$TUXDIR/lib
|
|
export SHLIB_PATH=$(envmng_path_add "$SHLIB_PATH" "$shlib_path")
|
|
;;
|
|
|
|
*rc)
|
|
;;
|
|
|
|
*)
|
|
echo "$0: Invalid command: [$1] !"
|
|
;;
|
|
esac
|