a5f47c23d5
* Remove support for the Poor Man fstab * Remove checks for the missing ARCH kernel variable * Remove .ashrc which is anyway only read once per login * Cleanup PATH variable Change-Id: Ic32e5749fba502dfa38d4d538860e717580bad60
32 lines
574 B
Bash
Executable file
32 lines
574 B
Bash
Executable file
# Default system-wide login shell profile.
|
|
|
|
# Activate emacs keybindings and command line history support
|
|
set -o emacs
|
|
|
|
# Set the default path
|
|
PATH=/usr/local/bin:/usr/pkg/bin:/usr/bin:/bin
|
|
|
|
# Add ~/bin, iff it is present
|
|
if [ -e ${HOME}/bin ]; then
|
|
PATH=${HOME}/bin:${PATH}
|
|
fi
|
|
|
|
# Add sbin for root
|
|
if [ "x$(id -u)" = "x0" ]; then
|
|
PATH=/usr/local/sbin:/usr/pkg/sbin:/usr/sbin:/sbin:${PATH}
|
|
|
|
if [ -e ${HOME}/sbin ]; then
|
|
PATH=${HOME}/sbin:${PATH}
|
|
fi
|
|
fi
|
|
|
|
# Set the timezone
|
|
export TZ=GMT0
|
|
RC_TZ=/etc/rc.timezone
|
|
|
|
if [ -f ${RC_TZ} ]; then
|
|
. ${RC_TZ}
|
|
fi
|
|
|
|
export PATH TZ
|
|
|