I've included in the bashrc file a check to see if root is logged in and change current directory to "/". But now the other others go to "/" as well... any ideas?
# Change directory to root if not already there.
if [ "$(whoami)" = "root" ]; then
cd /
fi