diff --git a/functions/command_install.sh b/functions/command_install.sh index fb4682d53..9c7eb7180 100644 --- a/functions/command_install.sh +++ b/functions/command_install.sh @@ -4,6 +4,7 @@ # Website: http://gameservermanagers.com lgsm_version="260216" +local modulename="Install" function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh diff --git a/functions/core_dl.sh b/functions/core_dl.sh index fae71b735..597a97150 100644 --- a/functions/core_dl.sh +++ b/functions/core_dl.sh @@ -28,13 +28,13 @@ if [ -n "${md5}" ]; then fn_printfaileolnl echo "${filename} returned MD5 checksum: ${md5sumcmd}" echo "expected MD5 checksum: ${md5}" - fn_scriptlog "failed to verify ${filename} with MD5" + fn_scriptlog "verifying ${filename} with MD5: FAIL" fn_scriptlog "${filename} returned MD5 checksum: ${md5sumcmd}" fn_scriptlog "expected MD5 checksum: ${md5}" exit 1 else fn_printokeolnl - fn_scriptlog "verifyed ${filename} with MD5" + fn_scriptlog "verifying ${filename} with MD5: OK" fn_scriptlog "${filename} returned MD5 checksum: ${md5sumcmd}" fn_scriptlog "expected MD5 checksum: ${md5}" fi diff --git a/functions/install_complete.sh b/functions/install_complete.sh index b6fab789d..5ea9a127b 100644 --- a/functions/install_complete.sh +++ b/functions/install_complete.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="271215" +local modulename="Install" + if [ "${gamename}" == "Don't Starve Together" ]; then echo "" echo "An Authentication Token is required to run this server!" diff --git a/functions/install_config.sh b/functions/install_config.sh index 257e29fd7..a47be1157 100644 --- a/functions/install_config.sh +++ b/functions/install_config.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="100116" +local modulename="Install" + fn_defaultconfig(){ echo "creating ${servercfg} config file." cp -v "${servercfgdefault}" "${servercfgfullpath}" diff --git a/functions/install_gslt.sh b/functions/install_gslt.sh index b7649eade..5bd309f28 100644 --- a/functions/install_gslt.sh +++ b/functions/install_gslt.sh @@ -6,6 +6,8 @@ lgsm_version="270216" # Description: Configures GSLT. +local modulename="Install" + echo "" echo "Game Server Login Token" echo "============================" diff --git a/functions/install_header.sh b/functions/install_header.sh index ae8ab9240..2f48fdc9c 100644 --- a/functions/install_header.sh +++ b/functions/install_header.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="271215" +local modulename="Install" + clear echo "=================================" echo "${gamename}" diff --git a/functions/install_logs.sh b/functions/install_logs.sh index 2722ef19b..a1687d962 100644 --- a/functions/install_logs.sh +++ b/functions/install_logs.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="270216" +local modulename="Install" + if [ "${checklogs}" != "1" ]; then echo "" echo "Creating log directorys" diff --git a/functions/install_retry.sh b/functions/install_retry.sh index 2e7697af5..7f04ac9ed 100644 --- a/functions/install_retry.sh +++ b/functions/install_retry.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="271215" +local modulename="Install" + while true; do read -e -i "y" -p "Retry install? [Y/n]" yn case $yn in diff --git a/functions/install_server_dir.sh b/functions/install_server_dir.sh index 2c664e8e3..1a4f54b77 100644 --- a/functions/install_server_dir.sh +++ b/functions/install_server_dir.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="271215" +local modulename="Install" + echo "" echo "Server Directory" echo "=================================" diff --git a/functions/install_server_files.sh b/functions/install_server_files.sh index b99bb9692..f345c09f1 100644 --- a/functions/install_server_files.sh +++ b/functions/install_server_files.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="270216" +local modulename="Install" + fn_install_server_files(){ if [ "${gamename}" == "Unreal Tournament 99" ]; then fileurl="http://gameservermanagers.com/files/UnrealTournament99/ut99-server-451-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut99-server-451-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="49cb24d0550ff6ddeaba6007045c6edd" diff --git a/functions/install_steamcmd.sh b/functions/install_steamcmd.sh index 1f744e7f6..de371bbd8 100644 --- a/functions/install_steamcmd.sh +++ b/functions/install_steamcmd.sh @@ -6,6 +6,8 @@ lgsm_version="271215" # Description: Downloads SteamCMD on install. +local modulename="Install" + echo "" echo "Installing SteamCMD" echo "=================================" diff --git a/functions/install_ts3.sh b/functions/install_ts3.sh index 27598ac56..3a2acc224 100644 --- a/functions/install_ts3.sh +++ b/functions/install_ts3.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="271215" +local modulename="Install" + info_distro.sh # Gets the teamspeak server architecture if [ "${arch}" == "x86_64" ]; then diff --git a/functions/install_ts3db.sh b/functions/install_ts3db.sh index 57c87b97d..90f5b0329 100644 --- a/functions/install_ts3db.sh +++ b/functions/install_ts3db.sh @@ -5,6 +5,8 @@ # Website: http://gameservermanagers.com lgsm_version="271215" +local modulename="Install" + fn_install_ts3db_mariadb(){ echo "" echo "checking if libmariadb2 is installed" diff --git a/functions/install_ut2k4_key.sh b/functions/install_ut2k4_key.sh index f582f4c16..53b603de1 100644 --- a/functions/install_ut2k4_key.sh +++ b/functions/install_ut2k4_key.sh @@ -4,6 +4,7 @@ # Website: http://gameservermanagers.com lgsm_version="271215" +local modulename="Install" echo "" echo "Enter ${gamename} CD Key"