blob: ac5d42d9fe605ed01b2041d9827af7d30c0ce6e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Execute the user's .root_profile file if it exists rather than this one.
case "$USER" in
"" | root)
UHOME="";;
*)
UHOME="`eval echo ~$USER`";;
esac
if [ "$UHOME" -a -r "$UHOME/.root_profile" ]; then
. "$UHOME/.root_profile"
else
PATH=/sbin:/bin:/local/bin
export PATH
echo "Don't login as root; use \`addauth root' or \`su'."
fi
|