From c61fbf21856e9d674682db9d1f4d2bc4325ec20e Mon Sep 17 00:00:00 2001 From: Christoph Moench-Tegeder Date: Wed, 29 May 2024 18:03:46 +0200 Subject: [PATCH] Improve prompts Use more fluid wording when prompting for start/stop commands, and fix typos while here. --- bin/add_cluster.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/add_cluster.sh b/bin/add_cluster.sh index c895dea..e2774f2 100755 --- a/bin/add_cluster.sh +++ b/bin/add_cluster.sh @@ -425,7 +425,7 @@ fi if [[ $SILENT_MODE == "YES" ]]; then REPLY=$INPUT_PG_START_SCRIPT else - read -p "If you dont want standart startup command to start your cluster, then provide custom start script: " + read -p "If you do not want the standard startup command to start your cluster, then provide a custom start script: " fi echo PG_START_SCRIPT=$REPLY @@ -433,7 +433,7 @@ PG_START_SCRIPT=$REPLY if [[ $SILENT_MODE == "YES" ]]; then REPLY=$INPUT_PG_STOP_SCRIPT else - read -p "If you dont want standart stop command to stop your cluster, then provide custom stop script: " + read -p "If you do not want the standard stop command to stop your cluster, then provide a custom stop script: " fi echo PG_STOP_SCRIPT=$REPLY