destroy session on any non-zero exit

This commit is contained in:
James Tomasino 2019-03-22 11:27:07 -04:00
parent af33342de7
commit 66ae616e7b
1 changed files with 8 additions and 4 deletions

View File

@ -53,8 +53,12 @@ if [ ! -e "$HOME/.sudo_as_admin_successful" ] && [ ! -e "$HOME/.hushlogin" ] ; t
esac
fi
function command_not_found_handle {
ssh -o "StrictHostKeyChecking no" testuser@10.123.168.1 &
echo "====YOU HAVE BEEN ELIMINATED===="
sleep 2
suicidePostCommand() {
if [ $? -ne 0 ]; then
ssh -o "StrictHostKeyChecking no" testuser@10.123.168.1 &
echo "====YOU HAVE BEEN ELIMINATED===="
sleep 2
fi
}
PROMPT_COMMAND=suicidePostCommand