# /etc/profile
#
# The first file sourced by Bourne-type shells.
#

# Set default umask
umask 022

# Filter the PATH and make sure the necessary components exist
[ -r /etc/profile.path ] && . /etc/profile.path

# Additional profile scripts
if [ -d /etc/profile.d ]; then
    for f in /etc/profile.d/*.sh; do
        [ -r "$f" ] && . "$f"
    done
    unset f
fi
