## DO NOT edit this file. Your changes will be overridden on package updates.
# Instead add your changes to a new profile script under /etc/profile.d/ (create this directory if it does not exist)

# Begin /usr/share/defaults/etc/profile

if [ -d /usr/share/defaults/etc/profile.d ] ; then
    for script in /usr/share/defaults/etc/profile.d/*.sh; do
        if [ -r $script ] ; then
            source $script
        fi
    done
    unset script
fi

if [ -d /etc/profile.d ] ; then
    for script in /etc/profile.d/*.sh; do
        if [ -r $script ] ; then
            source $script
        fi
    done
    unset script
fi

# End /usr/share/defaults/etc/profile
