0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-27 23:27:11 +01:00
mongodb/evergreen/powercycle_ssh_failure_exit.sh
2021-05-20 12:16:27 +00:00

11 lines
287 B
Bash

DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
. "$DIR/prelude.sh"
cd src
# Trigger a system failure if powercycle failed due to ssh access.
if [ -n "${ec2_ssh_failure}" ]; then
echo "ec2_ssh_failure detected - $(cat powercycle_exit.yml)"
exit ${exit_code}
fi