# Begin /etc/profile

export LANG=es_MX

if hostname | grep -q mantenimiento; then
   export PS1='\u@\h.mantenimiento:\w\$ ' 
else
   export PS1='\u@\h:\w\$ ' 
fi

alias ls='ls -F --color=yes'

# Preparamos los colores para ls
if [ -r /etc/DIR_COLORS ]; then
   eval `dircolors -b /etc/DIR_COLORS`
fi

# End /etc/profile
