exim: Add the SNT MX servers to the trusted list.
[matthijs/servers/drsnuggles.git] / etc / profile
1 # /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
2 # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
3
4 if [ "`id -u`" -eq 0 ]; then
5   PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
6 else
7   PATH="/usr/local/bin:/usr/bin:/bin:/usr/games"
8 fi
9
10 if [ "$PS1" ]; then
11   if [ "$BASH" ]; then
12     PS1='\u@\h:\w\$ '
13   else
14     if [ "`id -u`" -eq 0 ]; then
15       PS1='# '
16     else
17       PS1='$ '
18     fi
19   fi
20 fi
21
22 export PATH
23
24 umask 022
25
26 if [ "$SHELL" = "/bin/bash" ]; then
27         source /etc/bash.bashrc
28 fi