summaryrefslogtreecommitdiff
path: root/buildscripts/setup_spawnhost_coredump
diff options
context:
space:
mode:
authorLucas de Castro Borges <lucas@gnuabordo.com.br>2025-02-11 15:07:35 -0300
committerLucas de Castro Borges <lucas@gnuabordo.com.br>2025-02-11 15:07:35 -0300
commit4cb8841196d0625dfa3825aa326f071cd27c7b8b (patch)
tree1682a647d4463397c119183369ae6f750d5fdcff /buildscripts/setup_spawnhost_coredump
parentaa03c6362cbaa767638e6eed9b031d86dd2643d1 (diff)
parent8f0827553e09872941945a093b647a4211a9db7f (diff)
Update upstream source from tag 'upstream/6.0.0'master
Update to upstream version '6.0.0' with Debian dir 5604a80ec1c96ca76f25f40d78e6ef855abec322
Diffstat (limited to 'buildscripts/setup_spawnhost_coredump')
-rwxr-xr-xbuildscripts/setup_spawnhost_coredump43
1 files changed, 1 insertions, 42 deletions
diff --git a/buildscripts/setup_spawnhost_coredump b/buildscripts/setup_spawnhost_coredump
index 11191d53c4a..865dae12282 100755
--- a/buildscripts/setup_spawnhost_coredump
+++ b/buildscripts/setup_spawnhost_coredump
@@ -61,7 +61,7 @@ else
# Write this file that gets cat'ed on login to communicate to users logging in if this setup script is still running.
echo '+-----------------------------------------------------------------------------------+' > ~/.setup_spawnhost_coredump_progress
- echo "| The setup script is still setting up data files for inspection on a [${machine}] host. |" >> ~/.setup_spawnhost_coredump_progress
+ echo '| The setup script is still setting up data files for inspection on a [${machine}] host. |' >> ~/.setup_spawnhost_coredump_progress
echo '+-----------------------------------------------------------------------------------+' >> ~/.setup_spawnhost_coredump_progress
cat >> ~/.profile <<EOF
@@ -157,44 +157,3 @@ EOF
# paths/environment variables will be set as intended.
wall "The setup_spawnhost_coredump script has completed, please relogin to ensure the right environment variables are set."
fi
-
-# Send a Slack notification as the very last thing the setup_spawnhost_coredump script does.
-# This way a Server engineer can temporarily forget about the Evergreen host they spawned until the
-# paths and environment variables are configured as intended for when they first connect.
-if [[ "${machine}" = "Cygwin" ]]; then
- # The setup_spawnhost_coredump script runs as the mci-exec user on Windows hosts. However,
- # Server engineers log in as the Administrator user.
- ssh_user="Administrator"
- # The Evergreen binary only expects a Windows path. The rest of Cygwin is flexible about it
- # being a Cygwin path or a Windows path so we do the conversion here.
- evg_credentials_pathname=$(cygpath -w ~Administrator/.evergreen.yml)
- evg_binary_pathname=~Administrator/cli_bin/evergreen
-else
- ssh_user=$(whoami)
- evg_credentials_pathname=~/.evergreen.yml
- evg_binary_pathname=evergreen
-fi
-
-slack_user=$(awk '{if ($1 == "user:") print $2}' "$evg_credentials_pathname")
-# Refer to the https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html
-# documentation for more information on the AWS instance metadata endpoints.
-aws_metadata_svc="http://169.254.169.254"
-aws_token=$(curl -s -X PUT "$aws_metadata_svc/latest/api/token" -H 'X-aws-ec2-metadata-token-ttl-seconds: 60')
-ssh_host=$(curl -s -H "X-aws-ec2-metadata-token: $aws_token" "$aws_metadata_svc/latest/meta-data/public-hostname")
-if [[ "${machine}" = "Cygwin" ]]; then
- slack_message=$(printf "The setup_spawnhost_coredump script has finished setting things up. \
-Please use Windows Remote Desktop with\n\
-1. PC name: $ssh_host\n\
-2. User account: $ssh_user\n\
-3. The RDP password configured under the edit dialog at https://spruce.mongodb.com/spawn/host\n\
-to log in.")
-else
- slack_message="The setup_spawnhost_coredump script has finished setting things up. Please run "'```'"ssh $ssh_user@$ssh_host"'```'" to log in."
-fi
-
-# The Evergreen spawn host is expected to be provisioned with the user's .evergreen.yml credentials.
-# But in case something unexpected happens we don't want the setup_spawnhost_coredump script itself
-# to error.
-if [[ -n "${slack_user}" ]]; then
- "$evg_binary_pathname" --config "$evg_credentials_pathname" notify slack -t "@$slack_user" -m "$slack_message"
-fi