From 667a2d4eb9bc45c17f09468a34a282a9dd312e82 Mon Sep 17 00:00:00 2001 From: benthompson15 Date: Wed, 26 Aug 2020 15:42:01 -0500 Subject: [PATCH] MCOL-3494: change environmental to environment in error messages. --- oam/install_scripts/columnstore-post-install.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/oam/install_scripts/columnstore-post-install.in b/oam/install_scripts/columnstore-post-install.in index 378f118f7..59125dd2a 100755 --- a/oam/install_scripts/columnstore-post-install.in +++ b/oam/install_scripts/columnstore-post-install.in @@ -259,13 +259,13 @@ fi if [ ! -z "$MCS_USE_S3_STORAGE" ] && [ $MCS_USE_S3_STORAGE -eq 1 ]; then if [ -z "$MCS_S3_BUCKET" ]; then - echo "Environmental variable \$MCS_USE_S3_STORAGE is set but there is no \$MCS_S3_BUCKET." + echo "Environment variable \$MCS_USE_S3_STORAGE is set but there is no \$MCS_S3_BUCKET." fi if [ -z "$MCS_S3_ACCESS_KEY_ID" ]; then - echo "Environmental variable \$MCS_USE_S3_STORAGE is set but there is no \$MCS_S3_ACCESS_KEY_ID." + echo "Environment variable \$MCS_USE_S3_STORAGE is set but there is no \$MCS_S3_ACCESS_KEY_ID." fi if [ -z "$MCS_S3_SECRET_ACCESS_KEY" ]; then - echo "Environmental variable \$MCS_USE_S3_STORAGE is set but there is no \$MCS_S3_SECRET_ACCESS_KEY." + echo "Environment variable \$MCS_USE_S3_STORAGE is set but there is no \$MCS_S3_SECRET_ACCESS_KEY." fi if [ -z "$MCS_S3_BUCKET" ] || [ -z "$MCS_S3_ACCESS_KEY_ID" ] || [ -z "$MCS_S3_SECRET_ACCESS_KEY" ]; then echo "Using local storage." @@ -288,13 +288,13 @@ if [ ! -z "$MCS_USE_S3_STORAGE" ] && [ $MCS_USE_S3_STORAGE -eq 1 ]; then sed -i "s|aws_secret_access_key =.*|# aws_secret_access_key = |" /etc/columnstore/storagemanager.cnf echo "There was an error validating the settings used to access S3." echo "The specified user must have GET, PUT, HEAD, and DELETE permissions to the bucket." - echo "Verify the following environmental variables are correct:" + echo "Verify the following environment variables are correct:" echo "MCS_S3_BUCKET" echo "MCS_S3_ENDPOINT" echo "MCS_S3_ACCESS_KEY_ID" echo "MCS_S3_SECRET_ACCESS_KEY" echo "MCS_S3_REGION" - echo "After environmental variables are fixed, run command: columnstore-post-install" + echo "After environment variables are fixed, run command: columnstore-post-install" exit 1 fi fi