i've appended the below to /etc/bashrc, which is causing an error once i try to rsync using ssh to this specific box.
any idea how to prevent bashrc to execute the below to a no login shell ? or any other advice for that matter.
if [ $(id -u) -eq 0 ];
then # you are root
echo "###############################################"
echo "### You are now working as ROOT. ###"
echo "### Pay attention to what you type. ###"
echo "###############################################"
PS1="\\[$(tput setaf 1)\\]\\u@\\h:\\w #\\[$(tput sgr0)\\]"
else # nothing to do
echo
echo " ###########################################################"
echo "Welcome $(whoami), here's something to start your day with:"
echo
echo `sh /etc/lines.sh /etc/quotes.txt`
echo " ############################################################"
echo
PS1="[\\u@\\h:\\w] $"
fi