From 96c86e8b6dc3525a836c4e324a6e64eb1db1cad8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 8 May 2016 22:21:08 +0100 Subject: [PATCH] corrected [y/N] --- lgsm/functions/command_backup.sh | 4 ++-- lgsm/functions/command_console.sh | 2 +- lgsm/functions/command_ts3_server_pass.sh | 2 +- lgsm/functions/install_server_dir.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 4767920de..748c986b2 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -16,7 +16,7 @@ fn_print_info_nl "A total of $(du -sh "${rootdir}" --exclude="${backupdir}" | aw echo "${backupdir}/${backupname}.tar.gz" echo "" while true; do - read -p "Continue? [y/N]" yn + read -p "Continue? [Y/N]" yn case $yn in [Yy]* ) break;; [Nn]* ) echo Exiting; return;; @@ -30,7 +30,7 @@ if [ "${status}" != "0" ]; then fn_print_warning_nl "${servicename} is currently running." sleep 1 while true; do - read -p "Stop ${servicename} while running the backup? [y/N]" yn + read -p "Stop ${servicename} while running the backup? [Y/N]" yn case $yn in [Yy]* ) command_stop.sh; break;; [Nn]* ) break;; diff --git a/lgsm/functions/command_console.sh b/lgsm/functions/command_console.sh index 6e8f48831..615e289ea 100644 --- a/lgsm/functions/command_console.sh +++ b/lgsm/functions/command_console.sh @@ -18,7 +18,7 @@ echo "Press \"CTRL+b d\" to exit console." fn_print_warning_nl "Do NOT press CTRL+c to exit." echo "" while true; do - read -e -i "y" -p "Continue? [y/N]" yn + read -e -i "y" -p "Continue? [Y/n]" yn case $yn in [Yy]* ) break;; [Nn]* ) echo Exiting; return;; diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index 61f960bce..ad725df82 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -21,7 +21,7 @@ fn_print_infomation_nl "You are about to change the ${gamename} ServerAdmin pass fn_print_warning_nl "${gamename} will restart during this process." echo "" while true; do - read -e -i "y" -p "Continue? [y/N]" yn + read -e -i "y" -p "Continue? [Y/n]" yn case $yn in [Yy]* ) break;; [Nn]* ) echo Exiting; exit;; diff --git a/lgsm/functions/install_server_dir.sh b/lgsm/functions/install_server_dir.sh index 4c582bf00..c6a6523f2 100644 --- a/lgsm/functions/install_server_dir.sh +++ b/lgsm/functions/install_server_dir.sh @@ -18,7 +18,7 @@ if [ -d "${filesdir}" ]; then fi if [ -z "${autoinstall}" ]; then while true; do - read -e -i "y" -p "Continue [y/N]" yn + read -e -i "y" -p "Continue [Y/n]" yn case $yn in [Yy]* ) break;; [Nn]* ) exit;;