
# By default, we want umask to get set. This sets it for login shell
# Current threshold for system reserved uid/gids is 200
# You could check uidgid reservation validity in /usr/share/doc/setup-*/uidgid file
# Adding if and else section so that it is convenient to update umask value for system reserved and other users.
if [ $UID -gt 199 ] && [ "`/usr/bin/id -gn`" = "`/usr/bin/id -un`" ]; then
    umask 077
else
    umask 077
fi
