From f1d6714f2b709ff836cf71fe436e8618247e9342 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Fri, 20 Oct 2017 20:32:33 +0200 Subject: [PATCH] Allowed game name as possible argument for install and improved output --- linuxgsm.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/linuxgsm.sh b/linuxgsm.sh index 9dbc97b6a..0e6e3db30 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -229,9 +229,9 @@ fn_install_getopt(){ echo "https://gameservermanagers.com" echo -e "" echo -e "Commands" - echo -e "install |Select server to install." - echo -e "servername |e.g $0 csgoserver. Enter the required servername will install it." - echo -e "list |List all servers available for install." + echo -e "install\t\t|Select server to install." + echo -e "servername\t|e.g $0 csgoserver. Enter name of server/game to install." + echo -e "list\t\t|List all servers available for install." exit } @@ -307,8 +307,10 @@ if [ "${shortname}" == "core" ]; then fi elif [ -n "${userinput}" ]; then fn_server_info - if [ "${userinput}" == "${gameservername}" ]; then + if [ "${userinput}" == "${gameservername}" ]||[ "${userinput}" == "${gamename}" ]||[ "${userinput}" == "${shortname}" ]; then fn_install_file + else + echo "[ FAIL ] unknown game server" fi else fn_install_getopt