# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). # The 'bin' directories of software installed under /usr/local LOCAL_PATH=/usr/local/ssh/bin:/usr/local/bind/bin:/usr/local/apache/bin # The 'man' directories of software installed under /usr/local LOCAL_MANPATH=/usr/local/ssh/man:/usr/local/bind/man:/usr/local/apache/man PATH=/usr/bin:/bin:/usr/bin/X11:/usr/games:$LOCAL_PATH MANPATH=/usr/share/man:/usr/X11R6/man:$LOCAL_MANPATH # Make CPAN.pm use passive FTP, because we're behind a firewall. FTP_PASSIVE=1 if [ "$BASH" ]; then PS1='\u@\h:\w\$ ' if [ -f /etc/bash.bashrc ]; then source /etc/bash.bashrc fi else if [ "`id -u`" -eq 0 ]; then PS1='# ' else PS1='$ ' fi fi export PATH MANPATH PS1 FTP_PASSIVE umask 022