blob: d01e68baeb22432f76cf24bcdc52149e73e1225e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
if [ -r /etc/sysconfig/msec ]; then
. /etc/sysconfig/msec
fi
if ! echo ${PATH} |grep -q /usr/X11R6/bin ; then
export PATH=$PATH:/usr/X11R6/bin
fi
if ! echo ${PATH} |grep -q /usr/games ; then
export PATH=$PATH:/usr/games
fi
export SECURE_LEVEL=${SECURE_LEVEL}
[ -n "$TMOUT" ] && typeset -r TMOUT
|