# HMC_BASH_PROFILE_PROCESSING
testssh()
{
	# Prevent break into restricted shell
	myps=`type -p ps`
	if [ "$myps" != "" ]
	then
	  X=`ps --noheaders -f -p $PPID | grep -q "/usr/sbin/sshd"`
	  if [ $? -eq 0 ]
	  then
	    echo ""
	  fi
	fi
}
trap "testssh" 2 3 5 9 11
