diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core/bash/profile | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core/bash/profile')
-rw-r--r-- | abs/core/bash/profile | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/abs/core/bash/profile b/abs/core/bash/profile deleted file mode 100644 index ca1d402..0000000 --- a/abs/core/bash/profile +++ /dev/null @@ -1,35 +0,0 @@ -# -# /etc/profile -# - -export PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/X11R6/bin:/opt/bin" - -export MANPATH="/usr/man:/usr/X11R6/man" -export LESSCHARSET="latin1" -export INPUTRC="/etc/inputrc" -export LESS="-R" - -export LC_COLLATE="C" - -export COLUMNS LINES - -export PS1='[\u@\h \W]\$ ' -export PS2='> ' - -umask 022 - -if [ "$TERM" = "xterm" -o "$TERM" = "xterm-color" -o "$TERM" = "rxvt" -o "$TERM" = "xterm-xfree86" ]; then - PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"' -fi - -# load profiles from /etc/profile.d -# (to disable a profile, just remove execute permission on it) -if [ `ls -A1 /etc/profile.d/ | wc -l` -gt 0 ]; then - for profile in /etc/profile.d/*.sh; do - if [ -x $profile ]; then - . $profile - fi - done - unset profile -fi -# End of file |