mongo/evergreen/external_auth_azure_teardown.sh
adriangzz 6117f155a3 SERVER-109515 Disable oidc_e2e_azure_machine tests (#40737)
GitOrigin-RevId: 7c8b8a778ee3aa99c686884f74eb380d2ba47830
2025-09-02 14:56:01 +00:00

35 lines
1.0 KiB
Bash

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
# TODO: SERVER-109999 Uncomment or remove this line.
# 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