I'm on OS X and according to man bash /etc/profile is the system wide configuration for the bash shell.
For testing purposes I opened this file up :
open_profile(){
sudo chmod 777 /etc/profile
}
and added an echo so that I can see if it is actually running.
It is not:
# System-wide .profile for sh(1)
echo "test_global"
if [ -x /usr/libexec/path_helper ]; then
eval `/usr/libexec/path_helper -s`
fi
if [ "${BASH-no}" != "no" ]; then
[ -r /etc/bashrc ] && . /etc/bashrc
fi
I do not see the echo when I open up a bash shell.