As stated, having trouble with loading the default profile of <<user_acct>> when doing sudo su -l <<user_acct>>.
Inside .profile,
if [ -r "${HOME}/.profile.custom" ]; then
. "${HOME}/.profile.custom"
fi
From what I've read (for example, answers similar to this one), -l should have triggered a login shell and therefore sourced .profile, but it doesn't seem to be working because the environment variables set in .profile.custom is not there (vs. if I just ran . .profile, they show up.
Revised question: Any thoughts why or how to get around this issue?