# /etc/profile - config for init-shell
#
export HISTFILE=/tmp/.ash_history.$USER.$PPID

# This fixes the backspace when telnetting in.
if [ "$TERM" != "linux" ]; then
        stty erase ^H
fi

# source this file for subsequent shells, too
# (will also be sourced for init-shell)
export ENV=/etc/profile.environment

# Exec local profile
if [ -e "/etc/profile.local" ]; then
	echo "running /etc/profile.local"
	. /etc/profile.local
fi
