diff options
Diffstat (limited to '')
-rw-r--r-- | share/profile | 34 | ||||
-rw-r--r-- | share/profile.md5sums | 14 |
2 files changed, 48 insertions, 0 deletions
diff --git a/share/profile b/share/profile new file mode 100644 index 0000000..9485cbf --- /dev/null +++ b/share/profile @@ -0,0 +1,34 @@ +# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) +# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). + +if [ "`id -u`" -eq 0 ]; then + PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" +else + PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games" +fi +export PATH + +if [ "${PS1-}" ]; then + if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then + # The file bash.bashrc already sets the default PS1. + # PS1='\h:\w\$ ' + if [ -f /etc/bash.bashrc ]; then + . /etc/bash.bashrc + fi + else + if [ "`id -u`" -eq 0 ]; then + PS1='# ' + else + PS1='$ ' + fi + fi +fi + +if [ -d /etc/profile.d ]; then + for i in /etc/profile.d/*.sh; do + if [ -r $i ]; then + . $i + fi + done + unset i +fi diff --git a/share/profile.md5sums b/share/profile.md5sums new file mode 100644 index 0000000..1473093 --- /dev/null +++ b/share/profile.md5sums @@ -0,0 +1,14 @@ +356d504b5bf759b7bfef6cdc9e3c66e1 3.1.1 to 3.1.16 +f8b8e27b1a1b30a721a032baa254c973 4 to 5.0.0 +bfabfb83a6d9a773eb5e4fc81af9030e 5.1 and 5.2 +138403cbdd92a069480fefbf99ccbac8 5.3 +ab8413a709112f5ce298462fa445b190 5.4 +caefbdc2b725c2acb43d205f61779f9c 5.5 +bd615094228169d947e3af41c140ac57 5.6 +3bde72168bca3746e9281e863d43d6dc 5.7 and 5.8 +b94c2e3df2a779ac12080942df4d86ea 5.9 to 6.4 +89126d8bba3325594e1539bcc97847f3 buggy version by sendfile +91901ce5707909cfec8b3a1a6efbfa61 6.5 to 7.6 +6c56009f8aabda9400878ce3c7fd91af 7.7 +ff2bae0480885c074afadec201f5c668 7.8 to 9.5 +2255054e61cee1a99dbe893377820dde 9.6 to current |