summaryrefslogtreecommitdiff
path: root/libre-testing/filesystem/profile
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2011-01-29 17:48:43 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2011-01-29 17:48:43 -0300
commita2b9e9b1348ac6e5c77a28146560b7380551d609 (patch)
treef2cef4ac22c0a6877028ddabbe1ed4313cc0a187 /libre-testing/filesystem/profile
parentca7c217f85721d8f12e237d9d5c8dcf148adc5aa (diff)
downloadabslibre-a2b9e9b1348ac6e5c77a28146560b7380551d609.tar.gz
abslibre-a2b9e9b1348ac6e5c77a28146560b7380551d609.tar.bz2
abslibre-a2b9e9b1348ac6e5c77a28146560b7380551d609.zip
filesystem-2010.12-2
Diffstat (limited to 'libre-testing/filesystem/profile')
-rw-r--r--libre-testing/filesystem/profile27
1 files changed, 27 insertions, 0 deletions
diff --git a/libre-testing/filesystem/profile b/libre-testing/filesystem/profile
new file mode 100644
index 000000000..ccc07a4e5
--- /dev/null
+++ b/libre-testing/filesystem/profile
@@ -0,0 +1,27 @@
+# /etc/profile
+
+#Set our umask
+umask 022
+
+# Set our default path
+PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin"
+export PATH
+
+# Load profiles from /etc/profile.d
+if test -d /etc/profile.d/; then
+ for profile in /etc/profile.d/*.sh; do
+ test -r $profile && . $profile
+ done
+ unset profile
+fi
+
+# Source global bash config
+if test "$PS1" && test "$BASH" && test -r /etc/bash.bashrc; then
+ . /etc/bash.bashrc
+fi
+
+# Termcap is outdated, old, and crusty, kill it.
+unset TERMCAP
+
+# Man is much better than us at figuring this out
+unset MANPATH