From 082e494fcad78e67ba42114683dcafbf7416220c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 5 Nov 2015 11:48:40 +0000 Subject: [PATCH] Added default y in to y/n options Because im lazy --- functions/fn_debug | 4 ++-- functions/fn_install_glibcfix | 4 ++-- functions/fn_install_gsquery | 4 ++-- functions/fn_install_retry | 4 ++-- functions/fn_install_serverfiles | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/functions/fn_debug b/functions/fn_debug index d303e6498..ce2f91ce9 100644 --- a/functions/fn_debug +++ b/functions/fn_debug @@ -2,7 +2,7 @@ # LGSM fn_debug function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 311015 +# Version: 051115 # Description: Runs the server without tmux. Runs direct from the terminal. @@ -34,7 +34,7 @@ echo -e "Press CTRL+c to drop out of debug mode." fn_printwarningnl "If ${servicename} is already running it will be stopped." echo "" while true; do - read -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/functions/fn_install_glibcfix b/functions/fn_install_glibcfix index 18f1b0840..11dc3362d 100644 --- a/functions/fn_install_glibcfix +++ b/functions/fn_install_glibcfix @@ -2,7 +2,7 @@ # LGSM fn_install_glibcfix function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 301015 +# Version: 051115 fn_glibcfixmsg(){ echo "" @@ -40,7 +40,7 @@ if [ -z $(command -v ldd) ]; then sleep 1 echo "" while true; do - read -p "Continue install? [y/N]" yn + read -e -i "y" -p "Continue install? [Y/n]" yn case $yn in [Yy]* ) break;; [Nn]* ) echo Exiting; exit;; diff --git a/functions/fn_install_gsquery b/functions/fn_install_gsquery index ca2647908..896e01eff 100644 --- a/functions/fn_install_gsquery +++ b/functions/fn_install_gsquery @@ -2,7 +2,7 @@ # LGSM fn_install_gsquery function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 070715 +# Version: 051115 fn_dlgsquery(){ cd "${rootdir}" @@ -17,7 +17,7 @@ if [ "${engine}" == "avalanche" ]||[ "${engine}" == "goldsource" ]||[ "${engine} echo "============================" if [ -z ${autoinstall} ]; then while true; do - read -p "Do you want to install GameServerQuery? [y/N]" yn + read -e -i "y" -p "Do you want to install GameServerQuery? [Y/n]" yn case $yn in [Yy]* ) fn_dlgsquery;break;; [Nn]* ) echo ""; echo "Not installing GameServerQuery.";break;; diff --git a/functions/fn_install_retry b/functions/fn_install_retry index 0f3117e21..7146327e1 100644 --- a/functions/fn_install_retry +++ b/functions/fn_install_retry @@ -2,10 +2,10 @@ # LGSM fn_install_retry function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 210115 +# Version: 051115 while true; do - read -p "Retry install? [y/N]" yn + read -e -i "y" -p "Retry install? [Y/n]" yn case $yn in [Yy]* ) fn_install; exit;; [Nn]* ) echo Exiting; exit;; diff --git a/functions/fn_install_serverfiles b/functions/fn_install_serverfiles index ffeeebdd1..961106370 100644 --- a/functions/fn_install_serverfiles +++ b/functions/fn_install_serverfiles @@ -2,7 +2,7 @@ # LGSM fn_install_serverfiles function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 040715 +# Version: 051115 fn_steaminstallcommand(){ fn_check_steamuser @@ -78,7 +78,7 @@ if [ -z "${autoinstall}" ]; then echo "" echo "=================================" while true; do - read -p "Was the install successful? [y/N]" yn + read -e -i "y" -p "Was the install successful? [Y/n]" yn case $yn in [Yy]* ) break;; [Nn]* ) fn_install_retry;;