Browse Source

Allowed game name as possible argument for install and improved output

pull/1661/head
Marvin Lehmann 8 years ago
committed by GitHub
parent
commit
f1d6714f2b
  1. 10
      linuxgsm.sh

10
linuxgsm.sh

@ -229,9 +229,9 @@ fn_install_getopt(){
echo "https://gameservermanagers.com" echo "https://gameservermanagers.com"
echo -e "" echo -e ""
echo -e "Commands" echo -e "Commands"
echo -e "install |Select server to install." echo -e "install\t\t|Select server to install."
echo -e "servername |e.g $0 csgoserver. Enter the required servername will install it." echo -e "servername\t|e.g $0 csgoserver. Enter name of server/game to install."
echo -e "list |List all servers available for install." echo -e "list\t\t|List all servers available for install."
exit exit
} }
@ -307,8 +307,10 @@ if [ "${shortname}" == "core" ]; then
fi fi
elif [ -n "${userinput}" ]; then elif [ -n "${userinput}" ]; then
fn_server_info fn_server_info
if [ "${userinput}" == "${gameservername}" ]; then if [ "${userinput}" == "${gameservername}" ]||[ "${userinput}" == "${gamename}" ]||[ "${userinput}" == "${shortname}" ]; then
fn_install_file fn_install_file
else
echo "[ FAIL ] unknown game server"
fi fi
else else
fn_install_getopt fn_install_getopt

Loading…
Cancel
Save