From b00548f6bb259539a93def9140a41764b9bd86fe Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 20 Feb 2017 19:54:44 +0000 Subject: [PATCH] Added auto instal to mumble server --- lgsm/functions/core_getopt.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index bcecc6c2d..e738cab25 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -453,6 +453,8 @@ case "${getopt}" in command_console.sh;; i|install) command_install.sh;; + ai|auto-install) + fn_autoinstall;; dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) @@ -482,6 +484,7 @@ case "${getopt}" in echo -e "${blue}backup\t${default}b |Create archive of the server." echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." echo -e "${blue}install\t${default}i |Install the server." + echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." } | column -s $'\t' -t esac }