# /etc/profile

#Set our umask
umask 022

PATH="/bin:/usr/bin:/sbin:/usr/sbin"
export PATH

# Load profiles from /etc/profile.d
if test -d /etc/profile.d/; then
        for profile in /etc/profile.d/*.sh; do
                test -r "$profile" && . "$profile"
        done
        unset profile
fi

# Source global bash config
if test "$PS1" && test "$BASH" && test -r /etc/bash.bashrc; then
        . /etc/bash.bashrc
fi

cd /
echo "Hit ENTER to enter the bash shell ..."
read
clear
if ! [ -e /tmp/.setup ]; then
	[ -e /arch/setup ] && /arch/setup
fi
# End of file
