TERM=vt100
umask 022
alias ls='ls -F'
#PS1='\u@\h:\w\$'
#IP=`cat /tmp/ip`
#PS1='\u@$IP:\w\$ '
PS1='\h:\w\$ '
#PS1='[1;0;31m\h[0m:\w\$ '
PS2='> '

# Set the default system $PATH:
PATH="/opt/sbin:/opt/bin:/opt/usr/bin:/opt/usr/sbin:/usr/local/bin:/usr/bin:/bin"

# For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
# the $PATH.  Some means of connection don't add these by default (sshd comes
# to mind).
if [ "`id -u`" = "0" ]; then
  echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
  if [ ! $? = 0 ]; then
    PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
  fi
fi

# For non-root users, add the current directory to the search path:
if [ ! "`id -u`" = "0" ]; then
 PATH="$PATH:."
fi

export TERM PS1 PS2

