gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
2.0 KiB
43 lines
2.0 KiB
#!/bin/bash
|
|
# LinuxGSM command_install.sh function
|
|
# Author: Daniel Gibbs
|
|
# Contributor: UltimateByte
|
|
# Website: https://gameservermanagers.com
|
|
# Description: Overall function for the installer.
|
|
|
|
local commandname="INSTALL"
|
|
local commandaction="Install"
|
|
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
check.sh
|
|
install_header.sh
|
|
install_server_dir.sh
|
|
install_logs.sh
|
|
check_deps.sh
|
|
# Download and install
|
|
if [ "${gamename}" == "Unreal Tournament 2004" ]; then
|
|
install_server_files.sh
|
|
install_ut2k4_key.sh
|
|
elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty: United Offensive" ]||[ "${gamename}" == "Call of Duty 2" ]||[ "${gamename}" == "Call of Duty 4" ]||[ "${gamename}" == "Call of Duty: World at War" ]||[ "${gamename}" == "Factorio" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Multi Theft Auto" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then
|
|
installer=1
|
|
install_server_files.sh
|
|
elif [ -n "${appid}" ]; then
|
|
install_steamcmd.sh
|
|
install_server_files.sh
|
|
fi
|
|
|
|
# Configuration
|
|
install_config.sh
|
|
if [ "${gamename}" == "BrainBread 2" ]||[ "${gamename}" == "Black Mesa: Deathmatch" ]||[ "${gamename}" == "Counter-Strike: Global Offensive" ]||[ "${gamename}" == "Empires Mod" ]||[ "${gamename}" == "Garry’s Mod" ]||[ "${gamename}" == "No more Room in Hell" ]||[ "${gamename}" == "Team Fortress 2" ]||[ "${gamename}" == "Tower Unite" ]; then
|
|
install_gslt.sh
|
|
elif [ "${gamename}" == "Don't Starve Together" ]; then
|
|
install_dst_token.sh
|
|
elif [ "${gamename}" == "TeamSpeak 3" ]; then
|
|
install_ts3db.sh
|
|
elif [ "${gamename}" == "Multi Theft Auto" ]; then
|
|
command_install_resources_mta.sh
|
|
fi
|
|
|
|
fix.sh
|
|
install_complete.sh
|
|
core_exit.sh
|
|
|