From 3d43c4ce5762528d8ac98dd9504a5fd82083f643 Mon Sep 17 00:00:00 2001 From: Bourne-ID Date: Wed, 28 Aug 2019 22:38:53 +0100 Subject: [PATCH] fix(mtaserver): auto-install no longer waits at a prompt (#2418) --- lgsm/functions/command_install_resources_mta.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_install_resources_mta.sh b/lgsm/functions/command_install_resources_mta.sh index 7e7c4bb10..85fe20197 100644 --- a/lgsm/functions/command_install_resources_mta.sh +++ b/lgsm/functions/command_install_resources_mta.sh @@ -19,7 +19,12 @@ fn_install_resources(){ fn_print_header -fn_print_warning_nl "Installing the default resources with existing resources may cause issues." -if fn_prompt_yn "Do you want to install MTA default resources?" Y; then - fn_install_resources +if [ -z "${autoinstall}" ]; then + fn_print_warning_nl "Installing the default resources with existing resources may cause issues." + if fn_prompt_yn "Do you want to install MTA default resources?" Y; then + fn_install_resources + fi +else + fn_print_warning_nl "Default resources are not installed when using ./${selfname} auto-install." + fn_print_information_nl "To install default resources use ./${selfname} install" fi