0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-21 20:49:10 +01:00
mongodb/evergreen/external_auth_azure_teardown.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
962 B
Bash
Raw Normal View History

DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
. "$DIR/prelude.sh"
set -o errexit
# Only run this script for the external_auth_oidc_azure task.
if [ "${task_name}" != "external_auth_oidc_azure" ]; then
exit 0
fi
echo "Cleaning up Azure OIDC test artifacts"
cd src
# Clean up the SSH keyfile, if it exists
if [ -f "${HOME}/oidc_azure_container_key" ]; then
rm -f $HOME/oidc_azure_container_key
echo "Cleaned up container key"
fi
python src/mongo/db/modules/enterprise/jstests/external_auth_oidc_azure/lib/toggle_ingress.py disable --config_file=$HOME/azure_e2e_config.json --lock_file=/tmp/azure_oidc.lock
# Clean up the config file, if it exists
if [ -f "${HOME}/azure_e2e_config.json" ]; then
rm -f $HOME/azure_e2e_config.json
echo "Cleaned up azure_e2e_config.json"
fi
# Clean up the lock file, if it exists
if [ -f "/tmp/azure_oidc.lock" ]; then
rm -f /tmp/azure_oidc.lock
echo "Cleaned up /tmp/azure_oidc.lock"
fi