| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #!/bin/bash
- # LinuxGSM command_install.sh function
- # Author: Daniel Gibbs
- # Contributor: UltimateByte
- # Website: https://linuxgsm.com
- # Description: Overall function for the installer.
- local commandname="INSTALL"
- local commandaction="Install"
- local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
- check.sh
- if [ "$(whoami)" = "root" ]; then
- check_deps.sh
- else
- install_header.sh
- install_server_dir.sh
- install_logs.sh
- check_deps.sh
- installflag=1
- # Download and install
- if [ "${shortname}" == "ut2k4" ]; then
- install_server_files.sh
- install_ut2k4_key.sh
- elif [ -z "${appid}" ]; then
- installer=1
- install_server_files.sh
- elif [ -n "${appid}" ]; then
- install_steamcmd.sh
- install_server_files.sh
- fi
- # Configuration
- install_config.sh
- if [ "${shortname}" == "bb2" ]||[ "${shortname}" == "bmdm" ]||[ "${shortname}" == "csgo" ]||[ "${shortname}" == "em" ]||[ "${shortname}" == "gmod" ]||[ "${shortname}" == "nmrih" ]||[ "${shortname}" == "tf2" ]||[ "${shortname}" == "tu" ]; then
- install_gslt.sh
- elif [ "${shortname}" == "dst" ]; then
- install_dst_token.sh
- elif [ "${shortname}" == "squad" ]; then
- install_squad_license.sh
- elif [ "${shortname}" == "ts3" ]; then
- install_ts3db.sh
- elif [ "${shortname}" == "mta" ]; then
- command_install_resources_mta.sh
- fi
- fix.sh
- install_complete.sh
- core_exit.sh
- fi
|