michael@13: ## michael@13: ## @l_prefix@/.bash_login -- Local Bash Login Script michael@13: ## michael@13: michael@13: # provide user and host information in default prompt michael@13: PS1="\u@\h\$ " michael@13: michael@13: # environment permissions michael@13: umask 022 michael@13: ulimit -c 16384 michael@13: michael@13: # history functionality michael@13: shopt -s histappend michael@13: HISTSIZE=100 michael@13: HISTFILESIZE=100 michael@13: michael@13: # various additional variables michael@13: export TMPDIR=/tmp michael@13: export BLOCKSIZE=1024 michael@13: michael@13: # activate the bootstrapping Bourne-Shell michael@13: # environment of the OpenPKG hierarchy michael@13: eval `@l_prefix@/bin/openpkg rc --eval openpkg env` michael@13: michael@13: # make sure some non-standard but usually michael@13: # important executable directories are active michael@13: test -d /usr/ccs/bin && PATH="$PATH:/usr/ccs/bin" michael@13: test -d /usr/local/bin && PATH="$PATH:/usr/local/bin" michael@13: michael@13: # initially adjust $PWD to symbolic path michael@13: cd $HOME michael@13: michael@13: # path to bash environment init script michael@13: BASH_ENV=$HOME/.bashrc michael@13: michael@13: # source the standard environment script michael@13: . $BASH_ENV michael@13: