If its just the PATH you want, it's usually set in /etc/profile for newer versions of bash:
Code:
# Set the default system $PATH:
PATH="/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/games"
# For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
# the $PATH. Some means of connection don't add these by default (sshd comes
# to mind).
if [ "`id -u`" = "0" ]; then
echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
if [ ! $? = 0 ]; then
PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
fi
fi
You can just add the line:
PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
To whichever user's .bashrc, or edit /etc/profile and change it systemwide, or edit that if loop up there and make it true for more UIDs than just 0.
Cheers,
Finegan