Browse Source

Added default y in to y/n options

Because im lazy
pull/527/head
Daniel Gibbs 10 years ago
parent
commit
082e494fca
  1. 4
      functions/fn_debug
  2. 4
      functions/fn_install_glibcfix
  3. 4
      functions/fn_install_gsquery
  4. 4
      functions/fn_install_retry
  5. 4
      functions/fn_install_serverfiles

4
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;;

4
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;;

4
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;;

4
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;;

4
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;;

Loading…
Cancel
Save