Skip to content

Instantly share code, notes, and snippets.

@GuyPaddock
Last active September 11, 2023 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GuyPaddock/b07b8bfd7ab102c7a4cd423c2b929378 to your computer and use it in GitHub Desktop.
Save GuyPaddock/b07b8bfd7ab102c7a4cd423c2b929378 to your computer and use it in GitHub Desktop.
List the installation profile version of all Drupal sites on Pantheon that are tied to the Drupal 7 upstream. (Script authored by ChatGPT 3.5).
#!/bin/bash
# Define the Pantheon upstream ID
UPSTREAM_ID="21e1fada-199c-492b-97bd-0b36b53a9da0"
# Authenticate with Terminus (replace with your authentication method)
# terminus auth:login
# Initialize the CSV output with headers
echo "Site Name,Install Profile Version"
# Get a list of non-frozen Drupal 7 sites based on the specified upstream
SITES=$(terminus site:list --upstream "$UPSTREAM_ID" --fields=name --format=csv --filter="frozen=" | tail -n +2)
# Define the target environment
ENVIRONMENT="dev" # Change to your desired environment (e.g., test, live)
# Loop through the sites and check the install profile version
for SITE_NAME in $SITES; do
SITE="$SITE_NAME.$ENVIRONMENT"
# Use Terminus to execute rq and store the JSON output
REQUIREMENTS_JSON=$(terminus drush $SITE -- rq --format=json)
# Extract the install profile value from the JSON
INSTALL_PROFILE_VALUE=$(echo $REQUIREMENTS_JSON | jq -r '.install_profile.value')
# Extract the version from the install profile value using a more specific regex
INSTALL_PROFILE_VERSION=$(echo $INSTALL_PROFILE_VALUE | sed -n 's/.*>\(.*\)<\/em>.*/\1/p')
# Output the results in CSV format to standard output
echo "$SITE_NAME,$INSTALL_PROFILE_VERSION"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment