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.
46 lines
1.2 KiB
46 lines
1.2 KiB
#!/bin/bash
|
|
# LGSM command_validate.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
lgsm_version="060516"
|
|
|
|
# Description: Runs a server validation.
|
|
|
|
local modulename="Validate"
|
|
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
fn_validation(){
|
|
fn_print_warn_nl "Validating may overwrite some customised files."
|
|
echo -en "https://developer.valvesoftware.com/wiki/SteamCMD#Validate"
|
|
sleep 5
|
|
echo -en "\n"
|
|
fn_print_dots "Checking server files"
|
|
sleep 1
|
|
fn_print_ok "Checking server files"
|
|
fn_scriptlog "Checking server files"
|
|
sleep 1
|
|
|
|
cd "${rootdir}/steamcmd"
|
|
|
|
if [ $(command -v unbuffer) ]; then
|
|
unbuffer=unbuffer
|
|
fi
|
|
|
|
if [ "${engine}" == "goldsource" ]; then
|
|
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" +app_update "${appid}" validate +quit| tee -a "${scriptlog}"
|
|
else
|
|
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" validate +quit| tee -a "${scriptlog}"
|
|
fi
|
|
|
|
fix.sh
|
|
fn_scriptlog "Checking complete"
|
|
}
|
|
|
|
check_status.sh
|
|
if [ "${status}" != "0" ]; then
|
|
command_stop.sh
|
|
fn_validation
|
|
command_start.sh
|
|
else
|
|
fn_validation
|
|
fi
|
|
|