From a3c6c70d270114e93229d1bb568cda4b08acfc25 Mon Sep 17 00:00:00 2001 From: Darshit Chanpura Date: Fri, 6 Oct 2023 16:02:45 -0400 Subject: [PATCH] Updates echo messages to be more detailed Signed-off-by: Darshit Chanpura --- tools/install_demo_configuration.bat | 3 +++ tools/install_demo_configuration.sh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tools/install_demo_configuration.bat b/tools/install_demo_configuration.bat index c869788a54..addacef208 100755 --- a/tools/install_demo_configuration.bat +++ b/tools/install_demo_configuration.bat @@ -344,6 +344,9 @@ REM echo Unable to find the admin password for the cluster. Please set initialA REM exit /b 1 set "ADMIN_PASSWORD=admin" echo "Unable to find custom admin password. Continuing with the default password for admin." + echo "You can set the custom admin password in one of the following two ways:" + echo "1. Run 'export initialAdminPassword=' before script execution." + echo "2. Create a file $ADMIN_PASSWORD_FILE with a single line that contains the password. ) echo " ***************************************************" diff --git a/tools/install_demo_configuration.sh b/tools/install_demo_configuration.sh index 073716708a..2c658f976e 100755 --- a/tools/install_demo_configuration.sh +++ b/tools/install_demo_configuration.sh @@ -402,6 +402,9 @@ else # exit 1 ADMIN_PASSWORD="admin" echo "Unable to find custom admin password. Continuing with the default password for admin." + echo "You can set the custom admin password in one of the following two ways:" + echo "1. Run 'export initialAdminPassword=' before script execution." + echo "2. Create a file $ADMIN_PASSWORD_FILE with a single line that contains the password." fi echo " ***************************************************"