blob: 76508aeee53520f12cc88e1470f3deb612a5dafd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# shell security options
if [ -r /etc/security/shell ]; then
. /etc/security/shell
fi
if [ `id -u` -ge 500 ]; then
if [ -n "$UMASK_USER" ]; then
umask $UMASK_USER
else
umask 022
fi
else
if [ -n "$UMASK_ROOT" ]; then
umask $UMASK_ROOT
else
umask 022
fi
fi
if [ "$ALLOW_CURDIR_IN_PATH" == "yes" ]; then
if ! echo ${PATH} | fgrep -q :.; then
export PATH=$PATH:.
fi
fi
export SECURE_LEVEL
[ -n "$TMOUT" ] && type typeset > /dev/null 2>&1 && typeset -r TMOUT
# msec.sh ends here
|