#
# /etc/zprofile and ~/.zprofile are run for login shells
#
#
# run other components -- zsh is a bourne shell
for i in /etc/profile.d/*.sh
do
  source $i
done

if [ `id -gn` = `id -un` -a `id -u` -gt 14 ]; then
        umask 002
else
	umask 022
fi
