From c739902811551b9b7682ea7b7969f9eeabac6d41 Mon Sep 17 00:00:00 2001 From: Chaos Date: Tue, 3 Jan 2017 13:51:38 -0600 Subject: [PATCH 001/325] Adding Multi Theft Auto Support --- MultiTheftAuto/mtaserver | 161 ++++++++++++++++++++++++ lgsm/functions/command_install.sh | 4 +- lgsm/functions/install_config.sh | 8 +- lgsm/functions/install_mta_resources.sh | 50 ++++++++ lgsm/functions/install_server_files.sh | 2 + 5 files changed, 223 insertions(+), 2 deletions(-) create mode 100644 MultiTheftAuto/mtaserver create mode 100644 lgsm/functions/install_mta_resources.sh diff --git a/MultiTheftAuto/mtaserver b/MultiTheftAuto/mtaserver new file mode 100644 index 000000000..4e49001a2 --- /dev/null +++ b/MultiTheftAuto/mtaserver @@ -0,0 +1,161 @@ +#!/bin/bash +# San Andreas Multiplayer +# Server Management Script +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + +version="210516" + +#### Variables #### + +# Notification Alerts +# (on|off) + +# Email +emailalert="off" +email="email@example.com" +#emailfrom="email@example.com" + +# Pushbullet +# https://www.pushbullet.com/#settings +pushbulletalert="off" +pushbullettoken="accesstoken" + +# Start Variables +ip="0.0.0.0" +port="22003" + +fn_parms(){ +parms=" " +} + +#### Advanced Variables #### + +# Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="dgibbs64" +githubrepo="linuxgsm" +githubbranch="mta" + +# Server Details +servicename="mta-server" +gamename="Multi Theft Auto" +engine="RenderWare" + +# Directories +rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +lockselfname=".${servicename}.lock" +lgsmdir="${rootdir}/lgsm" +functionsdir="${lgsmdir}/functions" +libdir="${lgsmdir}/lib" +tmpdir="${lgsmdir}/tmp" +filesdir="${rootdir}/serverfiles" + +# Server Specific +systemdir="${filesdir}" +resourcesdir="${systemdir}/mods/deathmatch/resources" +executabledir="${systemdir}" +executable="./mta-server64" +servercfg="mtaserver.conf" +servercfgdir="${systemdir}/mods/deathmatch" +servercfgfullpath="${servercfgdir}/${servercfg}" + +# Backups +backupdir="${rootdir}/backups" + +# Logging +logdays="7" +gamelogdir="${filesdir}/mods/deathmatch/logs" +scriptlogdir="${rootdir}/log/script" +consolelogdir="${rootdir}/log/console" +consolelogging="on" + +scriptlog="${scriptlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +emaillog="${scriptlogdir}/${servicename}-email.log" + +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" + +######################## +######## Script ######## +###### Do not edit ##### +######################## + +# Fetches core_dl for file downloads +fn_fetch_core_dl(){ +github_file_url_dir="lgsm/functions" +github_file_url_name="${functionfile}" +filedir="${functionsdir}" +filename="${github_file_url_name}" +githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" +# If the file is missing, then download +if [ ! -f "${filedir}/${filename}" ]; then + if [ ! -d "${filedir}" ]; then + mkdir -p "${filedir}" + fi + echo -e " fetching ${filename}...\c" + # Check curl exists and use available path + curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" + for curlcmd in ${curlpaths} + do + if [ -x "${curlcmd}" ]; then + break + fi + done + # If curl exists download file + if [ "$(basename ${curlcmd})" == "curl" ]; then + curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) + if [ $? -ne 0 ]; then + echo -e "\e[0;31mFAIL\e[0m\n" + echo "${curlfetch}" + echo -e "${githuburl}\n" + exit 1 + else + echo -e "\e[0;32mOK\e[0m" + fi + else + echo -e "\e[0;31mFAIL\e[0m\n" + echo "Curl is not installed!" + echo -e "" + exit 1 + fi + chmod +x "${filedir}/${filename}" +fi +source "${filedir}/${filename}" +} + +core_dl.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_functions.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + +core_dl.sh +core_functions.sh +getopt=$1 +core_getopt.sh diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index a840af48a..e58ed8f6a 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -18,7 +18,7 @@ check_deps.sh 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}" == "Minecraft" ]||[ "${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 +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}" == "Minecraft" ]||[ "${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" ]||[ "${gamename}" == "Multi Theft Auto" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then @@ -34,6 +34,8 @@ 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 + install_mta_resources.sh fi fix.sh diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index a9a97423f..e32956b3d 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -488,4 +488,10 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars -fi \ No newline at end of file +elif [ "${gamename}" == "Multi Theft Auto" ]; then + gamedirname="MultiTheftAuto" + array_configs+=( acl.xml mtaserver.conf vehiclecolors.conf ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars +fi diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh new file mode 100644 index 000000000..042e7e21c --- /dev/null +++ b/lgsm/functions/install_mta_resources.sh @@ -0,0 +1,50 @@ +#!/bin/bash +# LGSM install_ts3db.sh function +# Author: Daniel Gibbs +# Contributor: PhilPhonic +# Website: https://gameservermanagers.com +# Description: Installs the libmysqlclient for database functions on the server and optionally installs default resources required to run the server + +local commandname="INSTALL" +local commandaction="Install" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +fn_install_libmysqlclient16(){ + echo "" + echo "checking if libmysqlclient16 is installed" + echo "=================================" + sleep 1 + ldd /usr/lib/libmysqlclient.so.16 | grep "libmysqlclient.so.16 => not found" + if [ $? -eq 0 ]; then + echo "libmysqlclient16 not installed. Installing.." + fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="/usr/lib/"; filename="libmysqlclient.so.16"; executecmd="noexecute" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fi + echo "libmysqlclient16 installed." +} + +fn_install_resources(){ + echo "" + echo "installing default resources" + echo "=================================" + fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tempdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="97a587509698f7f010bcd6e5c6dd9c31" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fn_dl_extract "${filedir}" "${filename}" "${resourcesdir}" + echo "default resources installed." +} + +fn_install_libmysqlclient16 + +if [ -z "${autoinstall}" ]; then + echo "" + while true; do + read -e -i "n" -p "Do you want to have the default resources downloaded? (Server is inoperable without resources!) [y/N]" yn + case $yn in + [Yy]* ) fn_install_resources && break;; + [Nn]* ) break;; + * ) echo "Please answer yes or no.";; + esac + done +else +fn_print_warning_nl "./${selfname} auto-install does not download the default resources. If you require them use ./${selfname} install" +fi diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 330e4fb40..990dca980 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -39,6 +39,8 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.com/UnrealTournament3/UT3-linux-server-2.1.tar.bz2"; filedir="${tmpdir}"; filename="UT3-linux-server-2.1.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="2527437b46f1b47f20228d27d72395a6" elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; filedir="${tmpdir}"; filename="enemy-territory.260b.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f833f514bfcdd46b42c111f83350c5a7" + elif [ "${gamename}" == "Multi Theft Auto" ]; then + fileurl="https://linux.mtasa.com/dl/153/multitheftauto_linux_x64-1.5.3.tar.gz"; filedir="${tempdir}"; filename="multitheftauto_linux_x64-1.5.3.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="77caf91fe280877a8d21f8046d5f42ba" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From cff49d1cb50b5434044ceae1035b62e884372a61 Mon Sep 17 00:00:00 2001 From: Chaos Date: Tue, 3 Jan 2017 14:04:49 -0600 Subject: [PATCH 002/325] Name adjustment --- MultiTheftAuto/mtaserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiTheftAuto/mtaserver b/MultiTheftAuto/mtaserver index 4e49001a2..c26176d19 100644 --- a/MultiTheftAuto/mtaserver +++ b/MultiTheftAuto/mtaserver @@ -1,5 +1,5 @@ #!/bin/bash -# San Andreas Multiplayer +# Multi Theft Auto # Server Management Script # Author: Daniel Gibbs # Website: https://gameservermanagers.com From 1026922eaa88471723c4ae6c3b2664db9d7fe0c1 Mon Sep 17 00:00:00 2001 From: Chaos Date: Tue, 3 Jan 2017 20:49:50 -0600 Subject: [PATCH 003/325] Updated look of server file to match newer versions, updated version number --- MultiTheftAuto/mtaserver | 67 ++++++++++++++++++++++++++-------------- 1 file changed, 43 insertions(+), 24 deletions(-) diff --git a/MultiTheftAuto/mtaserver b/MultiTheftAuto/mtaserver index c26176d19..7fe082265 100644 --- a/MultiTheftAuto/mtaserver +++ b/MultiTheftAuto/mtaserver @@ -9,32 +9,47 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="170103" -#### Variables #### +########################## +######## Settings ######## +########################## -# Notification Alerts -# (on|off) +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +# None Available + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +# Edit with care +fn_parms(){ +parms=" " +} + +#### LinuxGSM Settings #### -# Email +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" +emailfrom="" -# Pushbullet -# https://www.pushbullet.com/#settings +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +channeltag="" -# Start Variables -ip="0.0.0.0" -port="22003" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -fn_parms(){ -parms=" " -} +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### # Github Branch Select # Allows for the use of different function files @@ -43,12 +58,18 @@ githubuser="dgibbs64" githubrepo="linuxgsm" githubbranch="mta" -# Server Details -servicename="mta-server" +## LinuxGSM Server Details +# Do not edit gamename="Multi Theft Auto" engine="RenderWare" -# Directories +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="mta-server" + +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -58,7 +79,7 @@ libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" -# Server Specific +## Server Specific Directories systemdir="${filesdir}" resourcesdir="${systemdir}/mods/deathmatch/resources" executabledir="${systemdir}" @@ -67,20 +88,18 @@ servercfg="mtaserver.conf" servercfgdir="${systemdir}/mods/deathmatch" servercfgfullpath="${servercfgdir}/${servercfg}" -# Backups +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${filesdir}/mods/deathmatch/logs" scriptlogdir="${rootdir}/log/script" consolelogdir="${rootdir}/log/console" -consolelogging="on" - scriptlog="${scriptlogdir}/${servicename}-script.log" consolelog="${consolelogdir}/${servicename}-console.log" emaillog="${scriptlogdir}/${servicename}-email.log" +## Logs Naming scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" From d7bcd4bad3408ed0b57258bae029ae8f9b5d44f6 Mon Sep 17 00:00:00 2001 From: Chaos Date: Wed, 4 Jan 2017 22:26:45 -0600 Subject: [PATCH 004/325] Typo in the install file --- lgsm/functions/install_server_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 990dca980..d25b1e451 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -40,7 +40,7 @@ fn_install_server_files(){ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; filedir="${tmpdir}"; filename="enemy-territory.260b.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f833f514bfcdd46b42c111f83350c5a7" elif [ "${gamename}" == "Multi Theft Auto" ]; then - fileurl="https://linux.mtasa.com/dl/153/multitheftauto_linux_x64-1.5.3.tar.gz"; filedir="${tempdir}"; filename="multitheftauto_linux_x64-1.5.3.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="77caf91fe280877a8d21f8046d5f42ba" + fileurl="https://linux.mtasa.com/dl/153/multitheftauto_linux_x64-1.5.3.tar.gz"; filedir="${tmpdir}"; filename="multitheftauto_linux_x64-1.5.3.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="77caf91fe280877a8d21f8046d5f42ba" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From c1f781ea18701d22f58906dde25dfd3b06276f14 Mon Sep 17 00:00:00 2001 From: Chaos Date: Wed, 4 Jan 2017 23:08:21 -0600 Subject: [PATCH 005/325] Added the mta resources to the core_functions script --- lgsm/functions/core_functions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index ae1b436ea..a7f5e2805 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -554,6 +554,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +install_mta_resources.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Calls the global Ctrl-C trap core_trap.sh From 784a6ff26892fb5ab5562de4982fa774be029755 Mon Sep 17 00:00:00 2001 From: Chaos Date: Wed, 4 Jan 2017 23:08:54 -0600 Subject: [PATCH 006/325] Check if configuration directory exists before downloading and moving config files --- lgsm/functions/install_config.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index e32956b3d..724d88aab 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -490,6 +490,7 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_set_config_vars elif [ "${gamename}" == "Multi Theft Auto" ]; then gamedirname="MultiTheftAuto" + fn_check_cfgdir array_configs+=( acl.xml mtaserver.conf vehiclecolors.conf ) fn_fetch_default_config fn_default_config_remote From b6d0888a1b47af542f36aaa8657bfc1325f23fd9 Mon Sep 17 00:00:00 2001 From: Chaos Date: Wed, 4 Jan 2017 23:23:19 -0600 Subject: [PATCH 007/325] Improved formatting of the mta_resource install --- lgsm/functions/install_mta_resources.sh | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh index 042e7e21c..97d17c940 100644 --- a/lgsm/functions/install_mta_resources.sh +++ b/lgsm/functions/install_mta_resources.sh @@ -1,5 +1,5 @@ #!/bin/bash -# LGSM install_ts3db.sh function +# LGSM install_mta_resources.sh function # Author: Daniel Gibbs # Contributor: PhilPhonic # Website: https://gameservermanagers.com @@ -11,11 +11,10 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_install_libmysqlclient16(){ echo "" - echo "checking if libmysqlclient16 is installed" + echo "Checking if libmysqlclient16 is installed" echo "=================================" sleep 1 - ldd /usr/lib/libmysqlclient.so.16 | grep "libmysqlclient.so.16 => not found" - if [ $? -eq 0 ]; then + if [ ! -f /usr/lib/libmysqlclient.so.16 ]; then echo "libmysqlclient16 not installed. Installing.." fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="/usr/lib/"; filename="libmysqlclient.so.16"; executecmd="noexecute" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" @@ -25,12 +24,12 @@ fn_install_libmysqlclient16(){ fn_install_resources(){ echo "" - echo "installing default resources" + echo "Installing Default Resources" echo "=================================" - fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tempdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="97a587509698f7f010bcd6e5c6dd9c31" + fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tmpdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="97a587509698f7f010bcd6e5c6dd9c31" fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${resourcesdir}" - echo "default resources installed." + echo "Default Resources Installed." } fn_install_libmysqlclient16 From 410530ae1e802c4a85ca970b92b46c3469de82c2 Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 00:35:47 -0600 Subject: [PATCH 008/325] Custom opt --- lgsm/functions/core_getopt.sh | 62 +++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 03aa7359a..86dbdbc73 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -697,6 +697,66 @@ case "${getopt}" in esac } +fn_getopt_renderware(){ +case "${getopt}" in + st|start) + command_start.sh;; + sp|stop) + command_stop.sh;; + r|restart) + command_restart.sh;; + uf|update-functions) + command_update_functions.sh;; + m|monitor) + command_monitor.sh;; + ta|test-alert) + command_test_alert.sh;; + dt|details) + command_details.sh;; + pd|postdetails) + command_postdetails.sh;; + b|backup) + command_backup.sh;; + c|console) + command_console.sh;; + d|debug) + command_debug.sh;; + dev|dev-debug) + command_dev_debug.sh;; + i|install) + command_install.sh;; + ai|auto-install) + fn_autoinstall;; + dd|detect-deps) + command_dev_detect_deps.sh;; + *) + if [ -n "${getopt}" ]; then + echo -e "${red}Unknown command${default}: $0 ${getopt}" + exitcode=2 + fi + echo "Usage: $0 [option]" + echo "${gamename} - Linux Game Server Manager - Version ${version}" + echo "https://gameservermanagers.com/${selfname}" + echo -e "" + echo -e "${lightyellow}Commands${default}" + { + echo -e "${blue}start\t${default}st |Start the server." + echo -e "${blue}stop\t${default}sp |Stop the server." + echo -e "${blue}restart\t${default}r |Restart the server." + echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded." + echo -e "${blue}monitor\t${default}m |Checks that the server is running." + echo -e "${blue}test-alert\t${default}ta |Sends test alert." + echo -e "${blue}details\t${default}dt |Displays useful information about the server." + echo -e "${blue}postdetails\t${default}pd |Post stripped details to pastebin (for support)" + echo -e "${blue}backup\t${default}b |Create archive of the server." + echo -e "${blue}console\t${default}c |Console allows you to access the live view of a server." + echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." + echo -e "${blue}install\t${default}i |Install the server." + echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." + } | column -s $'\t' -t + esac +} + if [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble 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}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then @@ -717,6 +777,8 @@ elif [ "${engine}" == "unreal2" ]; then fi elif [ "${engine}" == "unreal" ]; then fn_getopt_unreal +elif [ "${engine}" == "RenderWare" ]; then + fn_getopt_renderware else fn_getopt_generic fi From 9052fbb13902ac86cd6d3a53365394218d972fe7 Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 00:36:45 -0600 Subject: [PATCH 009/325] Changes to how the mysqlclient gets installed, if user cannot use sudo it will warn the user about doing it after the installation --- lgsm/functions/install_mta_resources.sh | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh index 97d17c940..1fc11171a 100644 --- a/lgsm/functions/install_mta_resources.sh +++ b/lgsm/functions/install_mta_resources.sh @@ -15,11 +15,20 @@ fn_install_libmysqlclient16(){ echo "=================================" sleep 1 if [ ! -f /usr/lib/libmysqlclient.so.16 ]; then - echo "libmysqlclient16 not installed. Installing.." - fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="/usr/lib/"; filename="libmysqlclient.so.16"; executecmd="noexecute" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fn_print_warn "libmysqlclient16 not installed. Installing.." + sleep 1 + sudo -v > /dev/null 2>&1 + if [ $? -eq 0 ]; then + fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="${tmpdir}"; filename="libmysqlclient.so.16"; executecmd="executecmd" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + sudo mv ${tmpdir}/${filename} /usr/lib/${filename} + else + fn_print_fail_nl "Failed to install libmysqlclient16, $(whoami) does not have sudo access. Download it manually and place it in /usr/lib" + sleep 1 + fi + else + echo "libmysqlclient16 already installed." fi - echo "libmysqlclient16 installed." } fn_install_resources(){ @@ -37,7 +46,7 @@ fn_install_libmysqlclient16 if [ -z "${autoinstall}" ]; then echo "" while true; do - read -e -i "n" -p "Do you want to have the default resources downloaded? (Server is inoperable without resources!) [y/N]" yn + read -e -i "y" -p "Do you want to have the default resources downloaded? (Server is inoperable without resources!) [y/N]" yn case $yn in [Yy]* ) fn_install_resources && break;; [Nn]* ) break;; From f2cccf0bdd832d53102f0dfc08dcd10d655e44d5 Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 00:40:16 -0600 Subject: [PATCH 010/325] Appearance change --- lgsm/functions/install_mta_resources.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh index 1fc11171a..8d3074f45 100644 --- a/lgsm/functions/install_mta_resources.sh +++ b/lgsm/functions/install_mta_resources.sh @@ -15,7 +15,7 @@ fn_install_libmysqlclient16(){ echo "=================================" sleep 1 if [ ! -f /usr/lib/libmysqlclient.so.16 ]; then - fn_print_warn "libmysqlclient16 not installed. Installing.." + fn_print_warn_nl "libmysqlclient16 not installed. Installing.." sleep 1 sudo -v > /dev/null 2>&1 if [ $? -eq 0 ]; then From f2d8752de72240e363eb35cc627a99568863553a Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 00:50:52 -0600 Subject: [PATCH 011/325] Dependencies changed for MTA --- lgsm/functions/check_deps.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 36e0a8f04..0279a9ede 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -158,8 +158,8 @@ if [ -n "$(command -v dpkg-query)" ]; then fi fi - # All servers except ts3,mumble and minecraft servers require libstdc++6 and lib32gcc1 - if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]; then + # All servers except ts3,mumble,multitheftauto and minecraft servers require libstdc++6 and lib32gcc1 + if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]&&[ "${engine}" != "RenderWare" ]; then if [ "${arch}" == "x86_64" ]; then array_deps_required+=( lib32gcc1 libstdc++6:i386 ) else @@ -238,8 +238,8 @@ elif [ -n "$(command -v yum)" ]; then fi fi - # All servers except ts3,mumble and minecraft servers require glibc.i686 and libstdc++.i686 - if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]; then + # All servers except ts3,mumble,multitheftauto and minecraft servers require glibc.i686 and libstdc++.i686 + if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]&&[ "${engine}" != "RenderWare" ]; then array_deps_required+=( glibc.i686 libstdc++.i686 ) fi From 5ed99c9943788d4be0ad5a78fcbd3a4db8eb336f Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 01:14:46 -0600 Subject: [PATCH 012/325] Strip components flag on the gzip extractions. Required for the way MTA compresses it's archives. --- lgsm/functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index 6d971b997..e7f73621c 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -58,7 +58,7 @@ fn_dl_extract(){ mime=$(file -b --mime-type "${filedir}/${filename}") if [ "${mime}" == "application/gzip" ]||[ "${mime}" == "application/x-gzip" ]; then - tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}") + tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}" --strip-components=1) elif [ "${mime}" == "application/x-bzip2" ]; then tarcmd=$(tar -jxf "${filedir}/${filename}" -C "${extractdir}") elif [ "${mime}" == "application/zip" ]; then From 8949b3d3de51357a4abeffabfdc58d622c80e9a2 Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 11:17:23 -0600 Subject: [PATCH 013/325] Do not require glibc --- lgsm/functions/info_glibc.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 951adefd7..d9529995b 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -131,6 +131,9 @@ elif [ "${engine}" == "refractor" ]; then elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then glibcrequired="2.2.4" glibcfix="no" +elif [ "${gamename}" == "Multi Theft Auto" ]; then + glibcrequired="NOT REQUIRED" + glibcfix="no" else glibcrequired="UNKNOWN" glibcfix="no" From 631dab60ad375ba153e8aeab1fd3275b17df9955 Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 12:35:18 -0600 Subject: [PATCH 014/325] command details --- lgsm/functions/command_details.sh | 24 +++++++++++++++++++-- lgsm/functions/info_config.sh | 36 ++++++++++++++++++++++++++++++- 2 files changed, 57 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 9d9d8fddc..3be04f541 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -168,6 +168,11 @@ fn_details_gameserver(){ echo -e "${blue}dbplugin:\t${default}${dbplugin}" fi + # ASE (Multi Theft Auto) + if [ -n "${ase}" ]; then + echo -e "${blue}ASE:\t${default}${ase}" + fi + # Online status if [ "${status}" == "0" ]; then echo -e "${blue}Status:\t${red}OFFLINE${default}" @@ -310,7 +315,7 @@ fn_details_ports(){ parmslocation="${red}UNKNOWN${default}" # engines that require editing in the config file - local ports_edit_array=( "avalanche" "dontstarve" "idtech2" "idtech3" "idtech3_ql" "lwjgl2" "projectzomboid" "quake" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" ) + local ports_edit_array=( "avalanche" "dontstarve" "idtech2" "idtech3" "idtech3_ql" "lwjgl2" "projectzomboid" "quake" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" "RenderWare" ) for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then @@ -701,6 +706,19 @@ fn_details_ark(){ } | column -s $'\t' -t } +fn_details_mta(){ + echo -e "netstat -atunp | grep mta-server64" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL\tINI VARIABLE" + echo -e "> Game\tOUTBOUND\t${port}\tudp\tPort=${port}" + echo -e "> HTTP Server\tINBOUND\t${httpport}\ttcp" + if [ "${ase}" == "Enabled" ]; then + echo -e "> ASE Game_Monitor\tOUTBOUND\t$((${port} + 123))\tudp" + fi + } | column -s $'\t' -t +} + # Run checks and gathers details to display. fn_display_details() { @@ -716,7 +734,7 @@ fn_display_details() { fn_details_script fn_details_backup # Some game servers do not have parms. - if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${engine}" != "avalanche" ]&&[ "${engine}" != "dontstarve" ]&&[ "${engine}" != "projectzomboid" ]; then + if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${engine}" != "avalanche" ]&&[ "${engine}" != "dontstarve" ]&&[ "${engine}" != "projectzomboid" ]&&[ "${engine}" != "RenderWare" ]; then fn_parms fn_details_commandlineparms fi @@ -783,6 +801,8 @@ fn_display_details() { fn_details_rust elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_details_wolfensteinenemyterritory + elif [ "${gamename}" == "Multi Theft Auto" ]; then + fn_details_mta else fn_print_error_nl "Unable to detect server engine." fi diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 829bba841..a5fbf1a40 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -576,6 +576,38 @@ fn_info_config_sdtd(){ fi } +fn_info_config_mta(){ + if [ ! -f "${servercfgfullpath}" ]; then + port="${unavailable}" + httpport="${unavailable}" + ase="${unavailable}" + servername="${unavailable}" + serverpassword="${unavailable}" + maxplayers="${zero}" + else + port=$(grep -m 1 "serverport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') + httpport=$(grep -m 1 "httpport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') + ase=$(grep -m 1 "ase" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') + servername=$(grep -m 1 "servername" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<") + serverpassword=$(grep -m 1 "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<") + maxplayers=$(grep -m 1 "maxplayers" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') + + if [ "${ase}" == "1" ]; then + ase="Enabled" + else + ase="Disabled" + fi + + # Not Set + port=${port:-"NOT SET - Defaults to 22003"} + httpport=${httpport:-"NOT SET - Defaults to 22005"} + ase=${ase:-"NOT SET - Defaults to Disabled"} + servername=${servername:-"NOT SET"} + serverpassword=${serverpassword:-"NOT SET - Defaults to none"} + maxplayers=${maxplayers:-"0"} + fi +} + # Just Cause 2 if [ "${engine}" == "avalanche" ]; then fn_info_config_avalanche @@ -643,4 +675,6 @@ elif [ "${gamename}" == "7 Days To Die" ]; then fn_info_config_sdtd elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_info_config_wolfensteinenemyterritory -fi \ No newline at end of file +elif [ "${gamename}" == "Multi Theft Auto" ]; then + fn_info_config_mta +fi From 0a361905501f42100cb4e32c776b0566c3a40bc4 Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 12:35:26 -0600 Subject: [PATCH 015/325] Graceful stop --- lgsm/functions/command_stop.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index c5483a864..4175ee5dd 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -172,6 +172,34 @@ fn_stop_graceful_minecraft(){ fn_stop_tmux } +# Attempts graceful of mta using rcon 'quit' command. +fn_stop_graceful_mta(){ + fn_print_dots "Graceful: console quit" + fn_script_log_info "Graceful: console quit" + # sends quit + tmux send -t "${servicename}" quit ENTER > /dev/null 2>&1 + # waits up to 120 seconds giving the server time to shutdown gracefuly, we need a long wait time here as resources are stopped individually and process their own shutdowns + for seconds in {1..120}; do + check_status.sh + if [ "${status}" == "0" ]; then + fn_print_ok "Graceful: console quit: ${seconds}: " + fn_print_ok_eol_nl + fn_script_log_pass "Graceful: console quit: OK: ${seconds} seconds" + break + fi + sleep 1 + fn_print_dots "Graceful: console quit: ${seconds}" + done + check_status.sh + if [ "${status}" != "0" ]; then + fn_print_error "Graceful: console quit: " + fn_print_fail_eol_nl + fn_script_log_error "Graceful: console quit: FAIL" + fi + sleep 1 + fn_stop_tmux +} + fn_stop_graceful_select(){ if [ "${gamename}" == "7 Days To Die" ]; then fn_stop_graceful_sdtd @@ -181,6 +209,8 @@ fn_stop_graceful_select(){ fn_stop_graceful_goldsource elif [ "${engine}" == "lwjgl2" ]; then fn_stop_graceful_minecraft + elif [ "${engine}" == "RenderWare" ]; then + fn_stop_graceful_mta else fn_stop_tmux fi From de2ccb3423e1ce64acfd5b369bd78266412584bc Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 12:35:35 -0600 Subject: [PATCH 016/325] Ready for master! --- MultiTheftAuto/mtaserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiTheftAuto/mtaserver b/MultiTheftAuto/mtaserver index 7fe082265..07ac899f0 100644 --- a/MultiTheftAuto/mtaserver +++ b/MultiTheftAuto/mtaserver @@ -56,7 +56,7 @@ logdays="7" # from a different repo and/or branch. githubuser="dgibbs64" githubrepo="linuxgsm" -githubbranch="mta" +githubbranch="master" ## LinuxGSM Server Details # Do not edit From a9999f7d36d71ed31e32b87d64dd71a886231a75 Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 13:14:38 -0600 Subject: [PATCH 017/325] Header change --- lgsm/functions/install_mta_resources.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh index 8d3074f45..c1f16393a 100644 --- a/lgsm/functions/install_mta_resources.sh +++ b/lgsm/functions/install_mta_resources.sh @@ -1,7 +1,7 @@ #!/bin/bash # LGSM install_mta_resources.sh function # Author: Daniel Gibbs -# Contributor: PhilPhonic +# Contributor: ChaosMTA # Website: https://gameservermanagers.com # Description: Installs the libmysqlclient for database functions on the server and optionally installs default resources required to run the server From e18c0d4489db0706f84c2b4ebed2620f83d2b99d Mon Sep 17 00:00:00 2001 From: Chaos Date: Thu, 5 Jan 2017 15:36:16 -0600 Subject: [PATCH 018/325] Add unzip to required dependencies for LGSM --- lgsm/functions/check_deps.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 36e0a8f04..7d02097a4 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -147,7 +147,7 @@ if [ -n "$(command -v dpkg-query)" ]; then array_deps_missing=() # LGSM requirements - array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip ) + array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip ) # All servers except ts3 require tmux if [ "${gamename}" != "TeamSpeak 3" ]; then @@ -224,9 +224,9 @@ elif [ -n "$(command -v yum)" ]; then # LGSM requirements if [ "${distroversion}" == "6" ]; then - array_deps_required=( curl wget util-linux-ng python file gzip bzip2 ) + array_deps_required=( curl wget util-linux-ng python file gzip bzip2 unzip ) else - array_deps_required=( curl wget util-linux python file gzip bzip2 ) + array_deps_required=( curl wget util-linux python file gzip bzip2 unzip ) fi # All servers except ts3 require tmux From 01011b5360455dd0f6640f61ca5ee9e8701beaa1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 10 Jan 2017 20:12:21 +0000 Subject: [PATCH 019/325] Added engine --- Factorio/fctrserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Factorio/fctrserver b/Factorio/fctrserver index 948af8b31..0d10ee24d 100644 --- a/Factorio/fctrserver +++ b/Factorio/fctrserver @@ -72,7 +72,7 @@ githubbranch="master" ## LinuxGSM Server Details # Do not edit gamename="Factorio" -engine="" +engine="factorio" ## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers servicename="fctr-server" From 1b9e0bcd1b13cbb12aca510a0ddd50062b76c637 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 03:12:01 +0100 Subject: [PATCH 020/325] Fixes #1235 and more No config alteration for Ark, and requires to create the cfgdir. + Rearranging presentation to make more visual sense --- lgsm/functions/install_config.sh | 73 +++++++++++++++++--------------- 1 file changed, 38 insertions(+), 35 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 10a7040d2..426bec9c8 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -8,35 +8,7 @@ local commandname="INSTALL" local commandaction="Install" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -fn_fetch_default_config(){ - mkdir -pv "${lgsmdir}/default-configs" - githuburl="https://github.com/GameServerManagers/Game-Server-Configs/master" - - for config in "${array_configs[@]}" - do - fileurl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/master/${gamedirname}/${config}"; filedir="${lgsmdir}/default-configs"; filename="${config}"; executecmd="noexecute" run="norun"; force="noforce" - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" - done -} - -# Changes some variables within the default configs -# SERVERNAME to LinuxGSM -# PASSWORD to random password -fn_set_config_vars(){ - random=$(strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 8 | tr -d '\n'; echo) - servername="LinuxGSM" - rconpass="admin$random" - echo "changing hostname." - fn_script_log_info "changing hostname." - sleep 1 - sed -i "s/SERVERNAME/${servername}/g" "${servercfgfullpath}" - echo "changing rcon/admin password." - fn_script_log_info "changing rcon/admin password." - sed -i "s/ADMINPASSWORD/${rconpass}/g" "${servercfgfullpath}" - sleep 1 -} - -# Checks if cfg dir exists, creates it if it doesn't +# Checks if server cfg dir exists, creates it if it doesn't fn_check_cfgdir(){ if [ ! -d "${servercfgdir}" ]; then echo "creating ${servercfgdir} config directory." @@ -45,11 +17,19 @@ fn_check_cfgdir(){ fi } -# Copys the default configs from Game-Server-Configs repo to the -# correct location +# Downloads default configs from Game-Server-Configs repo to lgsm/default-configs +fn_fetch_default_config(){ + mkdir -pv "${lgsmdir}/default-configs" + githuburl="https://github.com/GameServerManagers/Game-Server-Configs/master" + for config in "${array_configs[@]}"; do + fileurl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/master/${gamedirname}/${config}"; filedir="${lgsmdir}/default-configs"; filename="${config}"; executecmd="noexecute" run="norun"; force="noforce" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + done +} + +# Copys default configs from Game-Server-Configs repo to server config location fn_default_config_remote(){ - for config in "${array_configs[@]}" - do + for config in "${array_configs[@]}"; do # every config is copied echo "copying ${config} config file." fn_script_log_info "copying ${servercfg} config file." @@ -66,6 +46,29 @@ fn_default_config_remote(){ sleep 1 } +# Changes some variables within the default configs +# SERVERNAME to LinuxGSM +# PASSWORD to random password +fn_set_config_vars(){ + if [ -f "${servercfgfullpath}" ]; then + random=$(strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 8 | tr -d '\n'; echo) + servername="LinuxGSM" + rconpass="admin$random" + echo "changing hostname." + fn_script_log_info "changing hostname." + sleep 1 + sed -i "s/SERVERNAME/${servername}/g" "${servercfgfullpath}" + echo "changing rcon/admin password." + fn_script_log_info "changing rcon/admin password." + sed -i "s/ADMINPASSWORD/${rconpass}/g" "${servercfgfullpath}" + sleep 1 + else + fn_script_log_warn "Config file not found, cannot alter it." + echo "Config file not found, cannot alter it." + sleep 1 + fi +} + # Changes some variables within the default Don't Starve Together configs fn_set_dst_config_vars(){ ## cluster.ini @@ -129,10 +132,10 @@ if [ "${gamename}" == "7 Days To Die" ]; then fn_set_config_vars elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then gamedirname="ARKSurvivalEvolved" + fn_check_cfgdir array_configs+=( GameUserSettings.ini ) fn_fetch_default_config fn_default_config_remote - fn_set_config_vars elif [ "${gamename}" == "ARMA 3" ]; then gamedirname="Arma3" fn_check_cfgdir @@ -494,4 +497,4 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars -fi \ No newline at end of file +fi From 6da044b55e80e501a915e564a5efa56848c291e6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 04:22:22 +0100 Subject: [PATCH 021/325] Real default values --- ARKSurvivalEvolved/arkserver | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 569be1483..95fce2b44 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -24,11 +24,11 @@ version="170110" ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters servername="ark-server" -port="7778" +port="7777" queryport="27015" -rconport="32330" +rconport="27020" rconpassword="" # Set to enable rcon -maxplayers="50" +maxplayers="60" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters From 8f143f0d3baec3049b1ace4cfdf70e915b43bc28 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 04:36:40 +0100 Subject: [PATCH 022/325] More explicit servername Otherwise you can think it's a servicename --- ARKSurvivalEvolved/arkserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 95fce2b44..47ba8919e 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -23,7 +23,7 @@ version="170110" #### Server Settings #### ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -servername="ark-server" +servername="LGSM ARK Server" port="7777" queryport="27015" rconport="27020" From eb2788ed9e25bdf6ad602c542d66e7deb72640ae Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 04:54:55 +0100 Subject: [PATCH 023/325] Better ARK ports info Will test if ok --- lgsm/functions/command_details.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 3af2b7ac7..20ad29222 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -347,9 +347,14 @@ fn_details_ark(){ echo -e "netstat -atunp | grep ShooterGame" echo -e "" { - echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL\tINI VARIABLE" - echo -e "> Game\tINBOUND\t${port}\tudp\tPort=${port}" + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + # Don't do arithmetics if ever the port wasn't a numeric value + if [ "${port}" -eq "${port}" ];then + echo -e "> RAW\t\INBOUND\t$((port+1))\tudp + fi echo -e "> Query\tINBOUND\t${queryport}\tudp" + echo -e "> RCON\INBOUND\t${rconport}\ttcp" } | column -s $'\t' -t } From 07fc2472992c0d2972ff59c30dd2487798ab2d67 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 04:56:23 +0100 Subject: [PATCH 024/325] missing space --- lgsm/functions/command_details.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 20ad29222..fae41b1a1 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -350,7 +350,7 @@ fn_details_ark(){ echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" echo -e "> Game\tINBOUND\t${port}\tudp" # Don't do arithmetics if ever the port wasn't a numeric value - if [ "${port}" -eq "${port}" ];then + if [ "${port}" -eq "${port}" ]; then echo -e "> RAW\t\INBOUND\t$((port+1))\tudp fi echo -e "> Query\tINBOUND\t${queryport}\tudp" From 6d15a580e72b9f9438e0c2cea2b706a5fac85f94 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 05:01:15 +0100 Subject: [PATCH 025/325] better close an echo --- lgsm/functions/command_details.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index fae41b1a1..bc634a4ce 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -351,7 +351,7 @@ fn_details_ark(){ echo -e "> Game\tINBOUND\t${port}\tudp" # Don't do arithmetics if ever the port wasn't a numeric value if [ "${port}" -eq "${port}" ]; then - echo -e "> RAW\t\INBOUND\t$((port+1))\tudp + echo -e "> RAW\t\INBOUND\t$((port+1))\tudp" fi echo -e "> Query\tINBOUND\t${queryport}\tudp" echo -e "> RCON\INBOUND\t${rconport}\ttcp" From a12d6cc2276f1e2c105858978a440b9a47839ceb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 05:03:04 +0100 Subject: [PATCH 026/325] I need to get better with tables. --- lgsm/functions/command_details.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index bc634a4ce..eee2af76e 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -351,10 +351,10 @@ fn_details_ark(){ echo -e "> Game\tINBOUND\t${port}\tudp" # Don't do arithmetics if ever the port wasn't a numeric value if [ "${port}" -eq "${port}" ]; then - echo -e "> RAW\t\INBOUND\t$((port+1))\tudp" + echo -e "> RAW\tINBOUND\t$((port+1))\tudp" fi echo -e "> Query\tINBOUND\t${queryport}\tudp" - echo -e "> RCON\INBOUND\t${rconport}\ttcp" + echo -e "> RCON\tINBOUND\t${rconport}\ttcp" } | column -s $'\t' -t } From 8543ec774414d1116d3954eecb93a5e2cc5a213b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 05:37:55 +0100 Subject: [PATCH 027/325] added back config vars for ark --- lgsm/functions/install_config.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 426bec9c8..51d8c4065 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -136,6 +136,7 @@ elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then array_configs+=( GameUserSettings.ini ) fn_fetch_default_config fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "ARMA 3" ]; then gamedirname="Arma3" fn_check_cfgdir From a557486a526af84e61de7ea727805a127f9d3321 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 05:57:25 +0100 Subject: [PATCH 028/325] Cleaning parameters set within .ini file and default maxplayers is actually 70 --- ARKSurvivalEvolved/arkserver | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 47ba8919e..d2d45f904 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -23,18 +23,16 @@ version="170110" #### Server Settings #### ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -servername="LGSM ARK Server" port="7777" queryport="27015" rconport="27020" -rconpassword="" # Set to enable rcon -maxplayers="60" +maxplayers="70" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters # Edit with care fn_parms(){ -parms="\"TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?ServerAdminPassword=${rconpassword}\"" +parms="\"TheIsland?listen?MultiHome=${ip}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?\"" } #### LinuxGSM Settings #### From 5144d86be55f7c63e0e581b9fc2821f69ddfcc4f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 06:07:35 +0100 Subject: [PATCH 029/325] Ark info config, to test --- lgsm/functions/info_config.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 2da3c4d84..c487d3917 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -39,6 +39,16 @@ fn_info_config_avalanche(){ fi } +fn_info_config_ark(){ + if [ ! -f "${servercfgfullpath}" ]; then + servername="${unavailable}" + else + servername=$(grep "Name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/SessionName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set + servername=${servername:-"NOT SET"} + fi +} + fn_info_config_bf1942(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" @@ -596,6 +606,9 @@ fn_info_config_sdtd(){ # Just Cause 2 if [ "${engine}" == "avalanche" ]; then fn_info_config_avalanche +# ARK: Survival Evolved +elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then + fn_info_config_ark # Battlefield: 1942 elif [ "${gamename}" == "Battlefield: 1942" ]; then fn_info_config_bf1942 @@ -663,4 +676,4 @@ elif [ "${gamename}" == "7 Days To Die" ]; then fn_info_config_sdtd elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_info_config_wolfensteinenemyterritory -fi \ No newline at end of file +fi From e4b0054f637452dbd3584aa8be9d89f4f29b4571 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 06:11:33 +0100 Subject: [PATCH 030/325] Grep Ark SessionName --- lgsm/functions/info_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index c487d3917..ea05055cd 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -43,7 +43,7 @@ fn_info_config_ark(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" else - servername=$(grep "Name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/SessionName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + servername=$(grep "SessionName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/SessionName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set servername=${servername:-"NOT SET"} fi From 43a924a12483b2947f1366677c249c1051cd1136 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 14:54:44 +0100 Subject: [PATCH 031/325] Typo: Survivial > Survival --- lgsm/functions/install_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 51d8c4065..840347ab4 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -130,7 +130,7 @@ if [ "${gamename}" == "7 Days To Die" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars -elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then +elif [ "${gamename}" == "ARK: Survival Evolved" ]; then gamedirname="ARKSurvivalEvolved" fn_check_cfgdir array_configs+=( GameUserSettings.ini ) From 4d4de5c822e0ad2a8afa0fb92d2083ececcf2b05 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 14:55:19 +0100 Subject: [PATCH 032/325] Typo: Survivial > Survival --- lgsm/functions/command_stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 2013f85bf..a23f4ad5c 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -296,7 +296,7 @@ fn_stop_tmux(){ rm -f "${rootdir}/${lockselfname}" # ARK doesn't clean up immediately after tmux is killed. # Make certain the ports are cleared before continuing. - if [ "${gamename}" == "ARK: Survivial Evolved" ]; then + if [ "${gamename}" == "ARK: Survival Evolved" ]; then fn_stop_ark echo -en "\n" fi From d6944b6f94f279278aaec570855e76025891a692 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 14:56:09 +0100 Subject: [PATCH 033/325] Typo: Survivial > Survival --- lgsm/functions/command_details.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index eee2af76e..73e54c3ff 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -777,7 +777,7 @@ fn_display_details() { fn_details_ut3 elif [ "${gamename}" == "7 Days To Die" ]; then fn_details_sdtd - elif [ "${gamename}" == "ARK: Survivial Evolved" ]; then + elif [ "${gamename}" == "ARK: Survival Evolved" ]; then fn_details_ark elif [ "${gamename}" == "Call of Duty" ]; then fn_details_cod From c909a85b569dd561fde67f1efb62cc8757b90b0d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 14:56:47 +0100 Subject: [PATCH 034/325] Typo: Survivial > Survival --- ARKSurvivalEvolved/arkserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index d2d45f904..6bc5079c0 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -80,7 +80,7 @@ githubbranch="master" ## LinuxGSM Server Details # Do not edit -gamename="ARK: Survivial Evolved" +gamename="ARK: Survival Evolved" engine="unreal4" ## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers From 4cca1e82dfcd210ff8939cec527aa065aaffa866 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:03:57 +0100 Subject: [PATCH 035/325] Mods install command --- lgsm/functions/command_mods_install.sh | 175 +++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 lgsm/functions/command_mods_install.sh diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh new file mode 100644 index 000000000..a2c7b8bed --- /dev/null +++ b/lgsm/functions/command_mods_install.sh @@ -0,0 +1,175 @@ +#!/bin/bash +# LGSM command_mods_install.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: List and installs available mods along with mods_list.sh. + +local commandname="MODS" +local commandaction="Mod Installation" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh +mods_list.sh + +fn_mods_install_init(){ + fn_script_log "Entering mods & addons installation" + echo "=================================" + echo "${gamename} mods & addons installation" + echo "" + # Display available mods from mods_list.sh + fn_mods_show_available + echo "" + # Keep prompting as long as the user input doesn't correspond to an available mod + while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do + echo -en "Enter a \e[36mmod\e[0m to install (or exit to abort): " + read -r usermodselect + # Exit if user says exit or abort + if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then + fn_script_log "User aborted." + echo "Aborted." + core_exit.sh + # Supplementary output upon invalid user input + elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then + fn_print_error2_nl "${usermodselect} is not a valid mod." + echo " * Enter a valid mod or input exit to abort." + fi + done + # Gives a pretty name to the user and get all mod info + currentmod="${usermodselect}" + fn_mod_get_info_from_command + fn_print_dots "Installing ${modprettyname}" + sleep 1 + fn_script_log "Installing ${modprettyname}." +} + +# Create mods directory if it doesn't exist +# Assuming the game is already installed as mods_list.sh checked for it. +fn_mods_dir(){ + if [ ! -d "${modinstalldir}" ]; then + fn_script_log_info "Creating mods directory: ${modinstalldir}" + fn_print_dots "Creating mods directory" + sleep 1 + mkdir -p "${modinstalldir}" + fn_print_ok_nl "Created mods directory" + fi +} + +# Clear mod download directory so that there is only one file in it since we don't the file name and extention +fn_clear_tmp_mods(){ + if [ -d "${modstmpdir}" ]; then + rm -r "${modstmpdir}" + fn_script_log "Clearing temp mod download directory: ${modstmpdir}" + fi +} + +# Create tmp download mod directory +fn_mods_tmpdir(){ + if [ ! -d "${modstmpdir}" ]; then + mkdir -p "${modstmpdir}" + fn_script_log "Creating temp mod download directory: ${modstmpdir}" + fi +} + +fn_mod_dl(){ + # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fileurl="${modurl}" + filedir="${modstmpdir}" + filename="${modfilename}" + fn_script_log "Downloading mods to ${modstmpdir}" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" + # Check if variable is valid checking if file has been downloaded and exists + if [ ! -f "${modstmpdir}/${modfilename}" ]; then + fn_print_fail "An issue occurred upon downloading ${modprettyname}" + core_exit.sh + fi +} + +fn_mod_extract(){ + # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" + filename="${modfilename}" + extractdir="${modstmpdir}/extracted" + if [ ! -d "${extractdir}" ]; then + mkdir -p "${extractdir}" + fi + fn_script_log "Extracting ${modprettyname} to ${extractdir}" + fn_dl_extract "${filedir}" "${filename}" "${extractdir}" +} + +fn_mod_fileslist(){ + # ${modsdatadir}/${modcommand}-files.list + true; +} + +fn_mod_copy_destination(){ + # Destination directory: ${modinstalldir} + fn_script_log "Copying ${modprettyname} to ${modinstalldir}" + cp -Rf "${extractdir}/." "${modinstalldir}/" +} + +# Check if the mod is already installed and warn the user +fn_mod_already_installed(){ + if [ -f "${modslockfilefullpath}" ]; then + if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + echo "" + fn_print_warning_nl "${modprettyname} has already been installed." + echo " * Mod files will be overwritten." + sleep 4 + fi + fi +} + +# Add the mod to the installed mods list +fn_mod_add_list(){ + # Create lgsm/data directory + if [ ! -d "${modsdatadir}" ]; then + mkdir -p "${modsdatadir}" + fn_script_log "Created ${modsdatadir}" + fi + # Create lgsm/data/${modslockfile} + if [ ! -f "${modslockfilefullpath}" ]; then + touch "${modslockfilefullpath}" + fn_script_log "Created ${modslockfilefullpath}" + fi + # Input mod name to lockfile + if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + echo "${modcommand}" >> "${modslockfilefullpath}" + fn_script_log "${modcommand} added to ${modslockfile}" + fi +} + +# Run all required operation +fn_mod_installation(){ + # If a mod was selected + if [ -n "${currentmod}" ]; then + # Get mod info + fn_mod_get_info_from_command + # Check if mod is already installed + fn_mod_already_installed + # Check and create required directories + fn_mods_dir + # Clear lgsm/tmp/mods dir if exists then recreate it + fn_clear_tmp_mods + fn_mods_tmpdir + # Download mod + fn_mod_dl + # Extract the mod + fn_mod_extract + # Build a file list + fn_mod_fileslist + # Copying to destination + fn_mod_copy_destination + # Ending with installation routines + fn_mod_add_list + fn_clear_tmp_mods + fn_print_ok_nl "${modprettyname} installed." + fn_script_log "${modprettyname} installed." + else + fn_print_fail "No mod was selected." + core_exit.sh + fi +} + +fn_mods_install_checks +fn_mods_install_init +fn_mod_installation From f677f13b666eff74745a44cb4837d74081bd3859 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:04:50 +0100 Subject: [PATCH 036/325] Mods remove init --- lgsm/functions/command_mods_remove.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lgsm/functions/command_mods_remove.sh diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh new file mode 100644 index 000000000..c2bb35f48 --- /dev/null +++ b/lgsm/functions/command_mods_remove.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# LGSM command_mods_uninstall.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Uninstall mods along with mods_list.sh. + +local commandname="MODS" +local commandaction="Mod Remove" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" From 18d6168c30e7bfaf11f46867b712ae55397d7e83 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:05:17 +0100 Subject: [PATCH 037/325] Command mods update init --- lgsm/functions/command_mods_update.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lgsm/functions/command_mods_update.sh diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh new file mode 100644 index 000000000..e1a818bc1 --- /dev/null +++ b/lgsm/functions/command_mods_update.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# LGSM command_mods_update.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Updates installed mods along with mods_list.sh. + +local commandname="MODS" +local commandaction="Mod Update" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" From 24fb13ffac418a903d32a5bf8b0d8125302877a7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:05:59 +0100 Subject: [PATCH 038/325] Declare mods functions --- lgsm/functions/core_functions.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 3a233174a..a8c41fc32 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -180,6 +180,21 @@ functionfile="${FUNCNAME}" fn_fetch_function } +command_mods_install.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + +command_mods_update.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + +command_mods_remove.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + command_fastdl.sh(){ functionfile="${FUNCNAME}" fn_fetch_function @@ -276,6 +291,12 @@ functionfile="${FUNCNAME}" fn_fetch_function } +# Mods + +mods_list.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} # Dev From f303ce2eb56acf1596fbaee7749db7d609c47e5c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:06:37 +0100 Subject: [PATCH 039/325] Mods install/update/remove opt --- lgsm/functions/core_getopt.sh | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 0cbd6f2b0..faa9c7011 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -43,6 +43,12 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; + mi|mods-install) + command_mods_install.sh;; + mu|mods-update) + command_mods_update.sh;; + mr|mods-remove) + command_mods_remove.sh;; dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) @@ -76,6 +82,9 @@ case "${getopt}" in echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." echo -e "${blue}install\t${default}i |Install the server." echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." + echo -e "${blue}mods-install\t${default}mi |View and install available mods/addons." + echo -e "${blue}mods-update\t${default}mu |Update installed mods/addons." + echo -e "${blue}mods-remove\t${default}mr |Remove installed mods/addons." } | column -s $'\t' -t esac } @@ -517,14 +526,20 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; + fd|fastdl) + command_fastdl.sh;; + mi|mods-install) + command_mods_install.sh;; + mu|mods-update) + command_mods_update.sh;; + mr|mods-remove) + command_mods_remove.sh;; dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; dl|detect-ldd) command_dev_detect_ldd.sh;; - fd|fastdl) - command_fastdl.sh;; *) if [ -n "${getopt}" ]; then echo -e "${red}Unknown command${default}: $0 ${getopt}" @@ -552,6 +567,9 @@ case "${getopt}" in echo -e "${blue}install\t${default}i |Install the server." echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." echo -e "${blue}fastdl\t${default}fd |Generates or update a FastDL directory for your server." + echo -e "${blue}mods-install\t${default}mi |View and install available mods/addons." + echo -e "${blue}mods-update\t${default}mu |Update installed mods/addons." + echo -e "${blue}mods-remove\t${default}mr |Remove installed mods/addons." } | column -s $'\t' -t esac } From cc07590575e1bfcbd2da9c0dba4498feebf270fb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 19:07:32 +0100 Subject: [PATCH 040/325] Base for mods_list.sh --- lgsm/functions/mods_list.sh | 286 ++++++++++++++++++++++++++++++++++++ 1 file changed, 286 insertions(+) create mode 100644 lgsm/functions/mods_list.sh diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh new file mode 100644 index 000000000..f4c1910b5 --- /dev/null +++ b/lgsm/functions/mods_list.sh @@ -0,0 +1,286 @@ +#!/bin/bash +# LGSM mods_list.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Lists and defines available mods for LGSM supported servers. +# Usage: To add a mod, you just need to add an array variable into fn_mods_info following the guide to set proper values. +# Usage: Then add this array to the mods_global_array. +# Usage: If needed, you can scrape to define the download URL inside the fn_mods_scrape_urls function. + +local commandname="MODS" +local commandaction="List Mods" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh + +## Useful variables +# Files and Directories +modstmpdir="${tmpdir}/mods" +modsdatadir="${lgsmdir}/data/mods" +modslockfile="installed-mods-listing" +modslockfilefullpath="${modsdatadir}/${modslockfile}" +# Separator name +modseparator="MOD" + +# Define mods information (required) +fn_mods_info(){ + # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubfolders" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) + # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) + # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) + # None of those values can be empty + # [index] | Usage + # [0] | MOD: separator, all mods must begin with it + # [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) + # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user + # [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) + # [4] | "filename": the output filename + # [5] | "modsubfolders": in how many subfolders is the mod (none is 1) + # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) + # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) + # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating + # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value + # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value + # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) + # [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install + # [13] | "Short Description" a description showed to the user upon installation + + # Source mods + mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "source;" "GAMES" "Garry's Mod;" "https://www.sourcemm.net" "Plugins Framework" ) + mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;" "source;" "GAMES" "Garry's Mod;" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) + # Garry's Mod Addons + mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) + mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) + mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) + mod_info_uclip=( MOD "uclip" "UClib" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) + mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) + mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) + mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) + mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) + mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) + # Oxidemod + mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Rust.zip" "Oxide-Rust_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Rust;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-rust.1659" "Allows for the use of plugins" ) + mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Hurtworld.zip" "Oxide-Hurtworld_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332" "Allows for the use of plugins" ) + mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-7DaysToDie.zip" "Oxide-7DaysToDie_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813" "Allows for the use of plugins" ) + + # REQUIRED: Set all mods info into one array for convenience + mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) +} + +# Get a proper URL for mods that don't provide a good one (optional) +fn_mods_scrape_urls(){ + # Metamod + metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" + metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" + metamodfasterurl="http://cdn.probablyaserver.com/sourcemod/" + metamodurl="${metamodfasterurl}/${metamodlatestfile}" + # Sourcemod + sourcemodmversion="1.8" + sourcemodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" + sourcemodlatestfile="$(wget "${sourcemodscrapeurl}/?MD" -q -O -| grep "sourcemod-" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" + sourcemodfasterurl="http://cdn.probablyaserver.com/sourcemod/" + sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" +} + +# Define all variables from a mod at once when index is set to a separator +fn_mod_info(){ +# If for some reason no index is set, none of this can work +if [ -z "$index" ]; then + fn_print_error "index variable not set. Please report an issue to LGSM Team." + echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + core_exit.sh +fi + modcommand="${mods_global_array[index+1]}" + modprettyname="${mods_global_array[index+2]}" + modurl="${mods_global_array[index+3]}" + modfilename="${mods_global_array[index+4]}" + modsubfolders="${mods_global_array[index+5]}" + modlowercase="${mods_global_array[index+6]}" + modinstalldir="${mods_global_array[index+7]}" + modkeepfiles="${mods_global_array[index+8]}" + modengines="${mods_global_array[index+9]}" + modgames="${mods_global_array[index+10]}" + modexcludegames="${mods_global_array[index+11]}" + modsite="${mods_global_array[index+12]}" + moddescription="${mods_global_array[index+13]}" +} + + +# Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable +fn_compatible_mod_games(){ + # Reset test value + modcompatiblegame="0" + # If value is set to GAMES (ignore) + if [ "${modgames}" != "GAMES" ]; then + # How many games we need to test + gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modgames" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${gamesamount}; gamevarindex++)); do + # Put current game name into modtest variable + gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If game name matches + if [ "${gamemodtest}" == "${gamename}" ]; then + # Mod is compatible ! + modcompatiblegame="1" + fi + done + fi +} + +# Find out if an engine is compatible with a mod from a modengines (list of engines supported by a mod) variable +fn_compatible_mod_engines(){ + # Reset test value + modcompatibleengine="0" + # If value is set to ENGINES (ignore) + if [ "${modengines}" != "ENGINES" ]; then + # How many engines we need to test + enginesamount="$(echo "${modengines}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modengines" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${enginesamount}; gamevarindex++)); do + # Put current engine name into modtest variable + enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If engine name matches + if [ "${enginemodtest}" == "${engine}" ]; then + # Mod is compatible ! + modcompatibleengine="1" + fi + done + fi +} + +# Find out if a game is not compatible with a mod from a modnotgames (list of games not supported by a mod) variable +fn_not_compatible_mod_games(){ + # Reset test value + modeincompatiblegame="0" + # If value is set to NOTGAMES (ignore) + if [ "${modexcludegames}" != "NOTGAMES" ]; then + # How many engines we need to test + excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modexcludegames" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${excludegamesamount}; gamevarindex++)); do + # Put current engine name into modtest variable + excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If engine name matches + if [ "${excludegamemodtest}" == "${gamename}" ]; then + # Mod is compatible ! + modeincompatiblegame="1" + fi + done + fi +} + +# Sums up if a mod is compatible or not with modcompatibility=0/1 +fn_mod_compatible_test(){ + # Test game and engine compatibility + fn_compatible_mod_games + fn_compatible_mod_engines + fn_not_compatible_mod_games + if [ "${modeincompatiblegame}" == "1" ]; then + modcompatibility="0" + elif [ "${modcompatibleengine}" == "1" ]||[ "${modcompatiblegame}" == "1" ]; then + modcompatibility="1" + else + modcompatibility="0" + fi +} + +# Checks if a mod is compatibile for installation +# Provides available mods for installation +# Provides commands for mods installation +fn_mods_available(){ + # First, reset variables + compatiblemodslist=() + availablemodscommands=() + modprettynamemaxlength="0" + modsitemaxlength="0" + moddescriptionmaxlength="0" + modcommandmaxlength="0" + # Find compatible games + # Find separators through the global array + for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do + # If current value is a separator; then + if [ "${mods_global_array[index]}" == "${modseparator}" ]; then + # Set mod variables + fn_mod_info + # Test if game is compatible + fn_mod_compatible_test + # If game is compatible + if [ "${modcompatibility}" == "1" ]; then + # Put it into the list to display to the user + compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) + # Keep available commands in an array + availablemodscommands+=( "${modcommand}" ) + fi + fi + done +} + +# Output available mods in a nice way to the user +fn_mods_show_available(){ + # Set and reset vars + compatiblemodslistindex=0 + spaces=" " + # As long as we're within index values + while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do + # Set values for convenience + displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" + displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" + displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" + displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" + # Output mods to the user + echo -e "\e[1m${displayedmodname}\e[0m" + echo -e " * ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * \e[36m${displayedmodcommand}\e[0m" + # Increment index from the amount of values we just displayed + let "compatiblemodslistindex+=4" + done +} + +# Get details of a mod any (relevant and unique, such as full mod name or install command) value +fn_mod_get_info_from_command(){ + # Variable to know when job is done + modinfocommand="0" + # Find entry in global array + for ((index=0; index <= ${#mods_global_array[@]}; index++)); do + # When entry is found + if [ "${mods_global_array[index]}" == "${currentmod}" ]; then + # Go back to the previous "MOD" separator + for ((index=index; index <= ${#mods_global_array[@]}; index--)); do + # When "MOD" is found + if [ "${mods_global_array[index]}" == "MOD" ]; then + # Get info + fn_mod_info + modinfocommand="1" + break + fi + done + fi + # Exit the loop if job is done + if [ "${modinfocommand}" == "1" ]; then + break + fi + done +} + +# Requirements to install mods +fn_mods_install_checks(){ + # If no mods are found + if [ -z "${compatiblemodslist}" ]; then + fn_print_fail "No mods are currently available for ${gamename}." + core_exit.sh + # If systemdir doesn't exist, then the game isn't installed + elif [ ! -d "${systemdir}" ]; then + fn_print_fail "${gamename} needs to be installed first." + core_exit.sh + # If tompdir variable doesn't exist, LGSM is too old + elif [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + fn_print_fail "Your LGSM version is too old." + echo " * Please do a full update, including ${selfname} script." + core_exit.sh + fi +} + +fn_mods_scrape_urls +fn_mods_info +fn_mods_available +fn_mods_install_checks From 05b4e3b06a675eda7efb2fb44b87a6223c45e076 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:29:56 +0100 Subject: [PATCH 041/325] Checks done differently --- lgsm/functions/mods_list.sh | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index f4c1910b5..42a301499 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -234,6 +234,11 @@ fn_mods_show_available(){ # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" done + # If no mods are found + if [ -z "${compatiblemodslist}" ]; then + fn_print_fail "No mods are currently available for ${gamename}." + core_exit.sh + fi } # Get details of a mod any (relevant and unique, such as full mod name or install command) value @@ -262,25 +267,6 @@ fn_mod_get_info_from_command(){ done } -# Requirements to install mods -fn_mods_install_checks(){ - # If no mods are found - if [ -z "${compatiblemodslist}" ]; then - fn_print_fail "No mods are currently available for ${gamename}." - core_exit.sh - # If systemdir doesn't exist, then the game isn't installed - elif [ ! -d "${systemdir}" ]; then - fn_print_fail "${gamename} needs to be installed first." - core_exit.sh - # If tompdir variable doesn't exist, LGSM is too old - elif [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LGSM version is too old." - echo " * Please do a full update, including ${selfname} script." - core_exit.sh - fi -} - fn_mods_scrape_urls fn_mods_info fn_mods_available -fn_mods_install_checks From 5c8b59db19c6ce0167462dcfe9699faa05d9ce21 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:30:09 +0100 Subject: [PATCH 042/325] Checks done differently --- lgsm/functions/command_mods_install.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index a2c7b8bed..c1bbcf89c 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -43,6 +43,19 @@ fn_mods_install_init(){ fn_script_log "Installing ${modprettyname}." } +fn_mods_requirements(){ + # If systemdir doesn't exist, then the game isn't installed + if [ ! -d "${systemdir}" ]; then + fn_print_fail "${gamename} needs to be installed first." + core_exit.sh + # If tompdir variable doesn't exist, LGSM is too old + elif [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + fn_print_fail "Your LGSM version is too old." + echo " * Please do a full update, including ${selfname} script." + core_exit.sh + fi +} + # Create mods directory if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. fn_mods_dir(){ @@ -170,6 +183,6 @@ fn_mod_installation(){ fi } -fn_mods_install_checks +fn_mods_requirements fn_mods_install_init fn_mod_installation From 29d2b51085ac7b5a6d134f9203271b0eeac172cf Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:35:18 +0100 Subject: [PATCH 043/325] No need to check for systemdir, lgsm already does --- lgsm/functions/command_mods_install.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index c1bbcf89c..5e419b86b 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -44,12 +44,8 @@ fn_mods_install_init(){ } fn_mods_requirements(){ - # If systemdir doesn't exist, then the game isn't installed - if [ ! -d "${systemdir}" ]; then - fn_print_fail "${gamename} needs to be installed first." - core_exit.sh # If tompdir variable doesn't exist, LGSM is too old - elif [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then fn_print_fail "Your LGSM version is too old." echo " * Please do a full update, including ${selfname} script." core_exit.sh From 77e2043700cad4893ef80935c43d8b679c7a6c55 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:36:47 +0100 Subject: [PATCH 044/325] checks moves to mods_list.sh --- lgsm/functions/command_mods_install.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 5e419b86b..8601567a7 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -43,15 +43,6 @@ fn_mods_install_init(){ fn_script_log "Installing ${modprettyname}." } -fn_mods_requirements(){ - # If tompdir variable doesn't exist, LGSM is too old - if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LGSM version is too old." - echo " * Please do a full update, including ${selfname} script." - core_exit.sh - fi -} - # Create mods directory if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. fn_mods_dir(){ @@ -179,6 +170,5 @@ fn_mod_installation(){ fi } -fn_mods_requirements fn_mods_install_init fn_mod_installation From ad2965d9f234ef52354bfdf69f4c15fb76109c37 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:37:52 +0100 Subject: [PATCH 045/325] Checks back here --- lgsm/functions/mods_list.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 42a301499..5da1d5dfc 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -82,6 +82,16 @@ fn_mods_scrape_urls(){ sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" } +# Sets some gsm requirements +fn_gsm_requirements(){ + # If tmpdir variable doesn't exist, LGSM is too old + if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + fn_print_fail "Your LGSM version is too old." + echo " * Please do a full update, including ${selfname} script." + core_exit.sh + fi +} + # Define all variables from a mod at once when index is set to a separator fn_mod_info(){ # If for some reason no index is set, none of this can work @@ -267,6 +277,7 @@ fn_mod_get_info_from_command(){ done } +fn_gsm_requirements fn_mods_scrape_urls fn_mods_info fn_mods_available From 7df96359817ff2aa0b8cf3c40d2d6b867c2a1a80 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:42:10 +0100 Subject: [PATCH 046/325] New line for better output --- lgsm/functions/command_mods_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 8601567a7..9bde617cd 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -38,7 +38,7 @@ fn_mods_install_init(){ # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command - fn_print_dots "Installing ${modprettyname}" + fn_print_dots_nl "Installing ${modprettyname}" sleep 1 fn_script_log "Installing ${modprettyname}." } From d35de663b0074712a4cd028e49607f3b410868fc Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:51:18 +0100 Subject: [PATCH 047/325] trying different mod view --- lgsm/functions/mods_list.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 5da1d5dfc..f05a7ac47 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -238,9 +238,8 @@ fn_mods_show_available(){ displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" # Output mods to the user - echo -e "\e[1m${displayedmodname}\e[0m" + echo -e "\e[36m${displayedmodcommand}\e[0m - \e[1m${displayedmodname}\e[0m" echo -e " * ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * \e[36m${displayedmodcommand}\e[0m" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" done From 46802979b380d12df404477b2efbc12d0e204cbd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:54:06 +0100 Subject: [PATCH 048/325] Trying another look --- lgsm/functions/mods_list.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index f05a7ac47..4d09807c9 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -238,8 +238,8 @@ fn_mods_show_available(){ displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" # Output mods to the user - echo -e "\e[36m${displayedmodcommand}\e[0m - \e[1m${displayedmodname}\e[0m" - echo -e " * ${displayedmoddescription} - ${displayedmodsite}" + echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * \e[36m${displayedmodcommand}\e[0m" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" done From 9ae8cb4d8f1c6568499ab8308ca5bbd2c5de5af2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 14 Jan 2017 20:59:00 +0100 Subject: [PATCH 049/325] typo ublib > uclip --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 4d09807c9..ebff4c67a 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -52,7 +52,7 @@ fn_mods_info(){ mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) - mod_info_uclip=( MOD "uclip" "UClib" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) + mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) From 80b21df4b05e0eff16cc209802da0088cbb62779 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 02:02:36 +0100 Subject: [PATCH 050/325] Added file list generation --- lgsm/functions/command_mods_install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 9bde617cd..9ea76257f 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -98,7 +98,8 @@ fn_mod_extract(){ fn_mod_fileslist(){ # ${modsdatadir}/${modcommand}-files.list - true; + find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list + fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" } fn_mod_copy_destination(){ From aecdd4c3a36a17d08a9559f4e9d448b24a845ca5 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 19:32:49 -0600 Subject: [PATCH 051/325] Trying out a hypothesis on the travis failures. --- .travis.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f91811da3..abb770e05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,16 @@ language: bash -sudo: false +sudo: required env: - DISTRO=ubuntu-trusty before_script: + - sudo ls -l /sys/class/net + - sudo ls -l --dereference /sys/class/net + - sudo ls -lad /sys/class + - sudo ls -lad /sys/devices + - sudo chmod a+x /sys + - sudo chmod a+rx /sys/class + - sudo chmod a+r /sys/class/net - curl -L "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/shunit2/shunit2-2.1.6.tgz" | tar zx addons: From 1e83458917e5b19d67455978b069956c1d843d04 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 02:36:39 +0100 Subject: [PATCH 052/325] Trying recursive installed mods display --- lgsm/functions/command_mods_update.sh | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index e1a818bc1..26bf7ba69 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -6,5 +6,28 @@ # Description: Updates installed mods along with mods_list.sh. local commandname="MODS" -local commandaction="Mod Update" +local commandaction="Mods Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh +mods_list.sh + +fn_mods_update_init(){ + fn_script_log "Entering mods & addons update" + echo "=================================" + echo "${gamename} mods & addons update" + echo "" + # Installed mod dir is "${modslockfilefullpath}" + # How many mods will be updated + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + # Loop showing mods to update + for (( installedmodsline=$installedmodscount; installedmodsline<=5; installedmodsline++ )); do + sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}" + done + + currentmod="${usermodselect}" + fn_mod_get_info_from_command + fn_print_dots_nl "Updating ${modprettyname}" + sleep 1 + fn_script_log "Updating ${modprettyname}." +} From e229b2c7ea6586d532865e2e7d780105fb93d57b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 02:46:26 +0100 Subject: [PATCH 053/325] new attempt --- lgsm/functions/command_mods_update.sh | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 26bf7ba69..c99162ae1 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -17,17 +17,20 @@ fn_mods_update_init(){ echo "=================================" echo "${gamename} mods & addons update" echo "" - # Installed mod dir is "${modslockfilefullpath}" - # How many mods will be updated - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - # Loop showing mods to update - for (( installedmodsline=$installedmodscount; installedmodsline<=5; installedmodsline++ )); do - sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}" - done + # Installed mod dir is "${modslockfilefullpath}" + # How many mods will be updated + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + # Loop showing mods to update + while [ $installedmodsline -lte $installedmodscount ]; do + sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}" + let installedmodscount=installedmodscount+1 + done - currentmod="${usermodselect}" - fn_mod_get_info_from_command - fn_print_dots_nl "Updating ${modprettyname}" - sleep 1 - fn_script_log "Updating ${modprettyname}." + #currentmod="${usermodselect}" + #fn_mod_get_info_from_command + #fn_print_dots_nl "Updating ${modprettyname}" + #sleep 1 + #fn_script_log "Updating ${modprettyname}." } + +fn_mods_update_init From 896c1b8fa54d391e6e69147321af8bf165332d37 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 19:50:13 -0600 Subject: [PATCH 054/325] One successful travis build. Ref: #1186 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index abb770e05..0b4a10ab8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ env: - DISTRO=ubuntu-trusty before_script: - - sudo ls -l /sys/class/net + - sudo ls -l /sys - sudo ls -l --dereference /sys/class/net - sudo ls -lad /sys/class - sudo ls -lad /sys/devices From 2c2ac53082696987a1171c3a73e19d51303fdcb6 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 19:58:07 -0600 Subject: [PATCH 055/325] #1186 revisited. --- .travis.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0b4a10ab8..b63d7cd85 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,13 +4,7 @@ env: - DISTRO=ubuntu-trusty before_script: - - sudo ls -l /sys - - sudo ls -l --dereference /sys/class/net - - sudo ls -lad /sys/class - - sudo ls -lad /sys/devices - - sudo chmod a+x /sys - - sudo chmod a+rx /sys/class - - sudo chmod a+r /sys/class/net + - sudo ls -ld /sys - curl -L "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/shunit2/shunit2-2.1.6.tgz" | tar zx addons: From a1a68db23369bc6cd93c95d1b0e6092f3f58b676 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 20:01:42 -0600 Subject: [PATCH 056/325] #1186 - Making sudo required seems to resolve the issue. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b63d7cd85..d385c27fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ env: - DISTRO=ubuntu-trusty before_script: - - sudo ls -ld /sys - curl -L "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/shunit2/shunit2-2.1.6.tgz" | tar zx addons: From 89eb3ee9f9b29de982412ffda8263602a8f6c187 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:17:58 +0100 Subject: [PATCH 057/325] Fixed output --- lgsm/functions/command_mods_update.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index c99162ae1..f162bb33b 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -20,12 +20,14 @@ fn_mods_update_init(){ # Installed mod dir is "${modslockfilefullpath}" # How many mods will be updated installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + echo "${installedmodscount} addons will be updated:" # Loop showing mods to update - while [ $installedmodsline -lte $installedmodscount ]; do - sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}" - let installedmodscount=installedmodscount+1 - done - + installedmodsline=1 + while [ $installedmodsline -le $installedmodscount ]; do + echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" + let installedmodsline=installedmodsline+1 + done + exit #currentmod="${usermodselect}" #fn_mod_get_info_from_command #fn_print_dots_nl "Updating ${modprettyname}" From 8ca7bca3cacd29a5449c1a04f025dd290d17e89c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:25:51 +0100 Subject: [PATCH 058/325] Testing for multiple installations --- lgsm/functions/command_mods_update.sh | 44 +++++++++++++++++++++++---- 1 file changed, 38 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index f162bb33b..272fee642 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -27,12 +27,44 @@ fn_mods_update_init(){ echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" let installedmodsline=installedmodsline+1 done - exit - #currentmod="${usermodselect}" - #fn_mod_get_info_from_command - #fn_print_dots_nl "Updating ${modprettyname}" - #sleep 1 - #fn_script_log "Updating ${modprettyname}." + sleep 2 +} + +fn_mods_update_loop(){ + while [ $installedmodsline -le $installedmodscount ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + fn_mod_get_info_from_command + if [ -n "${currentmod}" ]; then + fn_print_dots_nl "Updating ${modprettyname}" + sleep 0.5 + fn_script_log "Updating ${modprettyname}." + # Get mod info + fn_mod_get_info_from_command + # Check if mod is already installed + fn_mod_already_installed + # Check and create required directories + fn_mods_dir + # Clear lgsm/tmp/mods dir if exists then recreate it + fn_clear_tmp_mods + fn_mods_tmpdir + # Download mod + fn_mod_dl + # Extract the mod + fn_mod_extract + # Build a file list + fn_mod_fileslist + # Copying to destination + fn_mod_copy_destination + # Ending with installation routines + fn_mod_add_list + fn_clear_tmp_mods + fn_print_ok_nl "${modprettyname} installed." + fn_script_log "${modprettyname} installed." + else + fn_print_fail "No mod was selected." + core_exit.sh + fi + done } fn_mods_update_init From 5adee73be4ae46efa8afb40cd1f4a83f19275994 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:32:09 +0100 Subject: [PATCH 059/325] moving mods core functions away --- lgsm/functions/core_functions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index a8c41fc32..fc9dfaab0 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -298,6 +298,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +mods_core.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Dev command_dev_debug.sh(){ From c91831a133e25d8e89c8750c5505e8e298825e04 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:32:12 +0100 Subject: [PATCH 060/325] moving mods core functions away --- lgsm/functions/mods_core.sh | 114 ++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 lgsm/functions/mods_core.sh diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh new file mode 100644 index 000000000..17bce6f30 --- /dev/null +++ b/lgsm/functions/mods_core.sh @@ -0,0 +1,114 @@ +176 lines (161 sloc) 5.27 KB +#!/bin/bash +# LGSM command_mods_install.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: List and installs available mods along with mods_list.sh. + +local commandname="MODS" +local commandaction="Core functions for mods" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +## Useful variables +# Files and Directories +modstmpdir="${tmpdir}/mods" +modsdatadir="${lgsmdir}/data/mods" +modslockfile="installed-mods-listing" +modslockfilefullpath="${modsdatadir}/${modslockfile}" + +# Create mods directory if it doesn't exist +# Assuming the game is already installed as mods_list.sh checked for it. +fn_mods_dir(){ + if [ ! -d "${modinstalldir}" ]; then + fn_script_log_info "Creating mods directory: ${modinstalldir}" + fn_print_dots "Creating mods directory" + sleep 1 + mkdir -p "${modinstalldir}" + fn_print_ok_nl "Created mods directory" + fi +} + +# Clear mod download directory so that there is only one file in it since we don't the file name and extention +fn_clear_tmp_mods(){ + if [ -d "${modstmpdir}" ]; then + rm -r "${modstmpdir}" + fn_script_log "Clearing temp mod download directory: ${modstmpdir}" + fi +} + +# Create tmp download mod directory +fn_mods_tmpdir(){ + if [ ! -d "${modstmpdir}" ]; then + mkdir -p "${modstmpdir}" + fn_script_log "Creating temp mod download directory: ${modstmpdir}" + fi +} + +fn_mod_dl(){ + # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fileurl="${modurl}" + filedir="${modstmpdir}" + filename="${modfilename}" + fn_script_log "Downloading mods to ${modstmpdir}" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" + # Check if variable is valid checking if file has been downloaded and exists + if [ ! -f "${modstmpdir}/${modfilename}" ]; then + fn_print_fail "An issue occurred upon downloading ${modprettyname}" + core_exit.sh + fi +} + +fn_mod_extract(){ + # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" + filename="${modfilename}" + extractdir="${modstmpdir}/extracted" + if [ ! -d "${extractdir}" ]; then + mkdir -p "${extractdir}" + fi + fn_script_log "Extracting ${modprettyname} to ${extractdir}" + fn_dl_extract "${filedir}" "${filename}" "${extractdir}" +} + +fn_mod_fileslist(){ + # ${modsdatadir}/${modcommand}-files.list + find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list + fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" +} + +fn_mod_copy_destination(){ + # Destination directory: ${modinstalldir} + fn_script_log "Copying ${modprettyname} to ${modinstalldir}" + cp -Rf "${extractdir}/." "${modinstalldir}/" +} + +# Check if the mod is already installed and warn the user +fn_mod_already_installed(){ + if [ -f "${modslockfilefullpath}" ]; then + if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + echo "" + fn_print_warning_nl "${modprettyname} has already been installed." + echo " * Mod files will be overwritten." + sleep 4 + fi + fi +} + +# Add the mod to the installed mods list +fn_mod_add_list(){ + # Create lgsm/data directory + if [ ! -d "${modsdatadir}" ]; then + mkdir -p "${modsdatadir}" + fn_script_log "Created ${modsdatadir}" + fi + # Create lgsm/data/${modslockfile} + if [ ! -f "${modslockfilefullpath}" ]; then + touch "${modslockfilefullpath}" + fn_script_log "Created ${modslockfilefullpath}" + fi + # Input mod name to lockfile + if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + echo "${modcommand}" >> "${modslockfilefullpath}" + fn_script_log "${modcommand} added to ${modslockfile}" + fi +} From e2d26df74464de321cdaed6465279ff17bb76388 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:32:15 +0100 Subject: [PATCH 061/325] moving mods core functions away --- lgsm/functions/mods_list.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index ebff4c67a..28d8d5621 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -15,11 +15,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh ## Useful variables -# Files and Directories -modstmpdir="${tmpdir}/mods" -modsdatadir="${lgsmdir}/data/mods" -modslockfile="installed-mods-listing" -modslockfilefullpath="${modsdatadir}/${modslockfile}" # Separator name modseparator="MOD" From 1de06e19458a5f1ff537ecaa1a7821689e3d9dc1 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:32:18 +0100 Subject: [PATCH 062/325] moving mods core functions away --- lgsm/functions/command_mods_install.sh | 97 +------------------------- 1 file changed, 1 insertion(+), 96 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 9ea76257f..5c3fb7032 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -10,6 +10,7 @@ local commandaction="Mod Installation" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh +mods_core.sh mods_list.sh fn_mods_install_init(){ @@ -43,102 +44,6 @@ fn_mods_install_init(){ fn_script_log "Installing ${modprettyname}." } -# Create mods directory if it doesn't exist -# Assuming the game is already installed as mods_list.sh checked for it. -fn_mods_dir(){ - if [ ! -d "${modinstalldir}" ]; then - fn_script_log_info "Creating mods directory: ${modinstalldir}" - fn_print_dots "Creating mods directory" - sleep 1 - mkdir -p "${modinstalldir}" - fn_print_ok_nl "Created mods directory" - fi -} - -# Clear mod download directory so that there is only one file in it since we don't the file name and extention -fn_clear_tmp_mods(){ - if [ -d "${modstmpdir}" ]; then - rm -r "${modstmpdir}" - fn_script_log "Clearing temp mod download directory: ${modstmpdir}" - fi -} - -# Create tmp download mod directory -fn_mods_tmpdir(){ - if [ ! -d "${modstmpdir}" ]; then - mkdir -p "${modstmpdir}" - fn_script_log "Creating temp mod download directory: ${modstmpdir}" - fi -} - -fn_mod_dl(){ - # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" - fileurl="${modurl}" - filedir="${modstmpdir}" - filename="${modfilename}" - fn_script_log "Downloading mods to ${modstmpdir}" - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" - # Check if variable is valid checking if file has been downloaded and exists - if [ ! -f "${modstmpdir}/${modfilename}" ]; then - fn_print_fail "An issue occurred upon downloading ${modprettyname}" - core_exit.sh - fi -} - -fn_mod_extract(){ - # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" - filename="${modfilename}" - extractdir="${modstmpdir}/extracted" - if [ ! -d "${extractdir}" ]; then - mkdir -p "${extractdir}" - fi - fn_script_log "Extracting ${modprettyname} to ${extractdir}" - fn_dl_extract "${filedir}" "${filename}" "${extractdir}" -} - -fn_mod_fileslist(){ - # ${modsdatadir}/${modcommand}-files.list - find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list - fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" -} - -fn_mod_copy_destination(){ - # Destination directory: ${modinstalldir} - fn_script_log "Copying ${modprettyname} to ${modinstalldir}" - cp -Rf "${extractdir}/." "${modinstalldir}/" -} - -# Check if the mod is already installed and warn the user -fn_mod_already_installed(){ - if [ -f "${modslockfilefullpath}" ]; then - if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "" - fn_print_warning_nl "${modprettyname} has already been installed." - echo " * Mod files will be overwritten." - sleep 4 - fi - fi -} - -# Add the mod to the installed mods list -fn_mod_add_list(){ - # Create lgsm/data directory - if [ ! -d "${modsdatadir}" ]; then - mkdir -p "${modsdatadir}" - fn_script_log "Created ${modsdatadir}" - fi - # Create lgsm/data/${modslockfile} - if [ ! -f "${modslockfilefullpath}" ]; then - touch "${modslockfilefullpath}" - fn_script_log "Created ${modslockfilefullpath}" - fi - # Input mod name to lockfile - if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "${modcommand}" >> "${modslockfilefullpath}" - fn_script_log "${modcommand} added to ${modslockfile}" - fi -} - # Run all required operation fn_mod_installation(){ # If a mod was selected From 9502cbdb034f6fddd4dcd8cdf1e9e92a1a9e9d89 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:33:18 +0100 Subject: [PATCH 063/325] Removed jerk line --- lgsm/functions/mods_core.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 17bce6f30..ac1b0ab61 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -1,4 +1,3 @@ -176 lines (161 sloc) 5.27 KB #!/bin/bash # LGSM command_mods_install.sh function # Author: Daniel Gibbs From 99bf5905a36ef1ad3cd89bbedc87a2a51b9f3067 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:36:01 +0100 Subject: [PATCH 064/325] description --- lgsm/functions/command_mods_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 5c3fb7032..0b9d64eff 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: List and installs available mods along with mods_list.sh. +# Description: List and installs available mods along with mods_list.sh and mods_core.sh. local commandname="MODS" local commandaction="Mod Installation" From 47e8886d0b1c30b029e1264861216d75a6036a60 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:48:14 +0100 Subject: [PATCH 065/325] Various fixes --- lgsm/functions/command_mods_update.sh | 33 +++++++++++++++++++-------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 272fee642..c64bf5427 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -3,13 +3,14 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Updates installed mods along with mods_list.sh. +# Description: Updates installed mods along with mods_list.sh and mods_core.sh. local commandname="MODS" local commandaction="Mods Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh +mods_core.sh mods_list.sh fn_mods_update_init(){ @@ -19,18 +20,27 @@ fn_mods_update_init(){ echo "" # Installed mod dir is "${modslockfilefullpath}" # How many mods will be updated - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - echo "${installedmodscount} addons will be updated:" - # Loop showing mods to update - installedmodsline=1 - while [ $installedmodsline -le $installedmodscount ]; do - echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" - let installedmodsline=installedmodsline+1 - done - sleep 2 + if [ -f "${modslockfilefullpath}" ]; then + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + if + echo "${installedmodscount} addons will be updated:" + # Loop showing mods to update + installedmodsline=1 + while [ $installedmodsline -le $installedmodscount ]; do + echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" + let installedmodsline=installedmodsline+1 + done + sleep 2 + else + fn_print_info_nl "No mods to be updated!" + echo " * Did you install any mod using LGSM?" + fn_print_log "No mods to be updated" + core_exit.sh + fi } fn_mods_update_loop(){ + installedmodline="1" while [ $installedmodsline -le $installedmodscount ]; do currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" fn_mod_get_info_from_command @@ -60,6 +70,8 @@ fn_mods_update_loop(){ fn_clear_tmp_mods fn_print_ok_nl "${modprettyname} installed." fn_script_log "${modprettyname} installed." + let installedmodsline=installedmodsline+1 + else fn_print_fail "No mod was selected." core_exit.sh @@ -68,3 +80,4 @@ fn_mods_update_loop(){ } fn_mods_update_init +fn_mods_update_loop From 5fa0d131a00d741faa73be5bb52bcbeb79cc22ef Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 20:49:37 -0600 Subject: [PATCH 066/325] Trying to break it now. --- .travis.yml | 3 ++- tests/tests_jc2server.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d385c27fa..84fc85d9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: bash -sudo: required +sudo: false env: - DISTRO=ubuntu-trusty @@ -19,6 +19,7 @@ addons: - libstdc++6:i386 - telnet - expect + - strace script: diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index cd765b480..194165365 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(command_start.sh) +(strace -f command_start.sh | tee /tmp/output; curl --upload-file ./hello.txt https://transfer.sh/hello.txt) fn_test_result_pass echo "" From 74cdfa3cff326f4a714bc8d11e2552b6eefad518 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 20:53:24 -0600 Subject: [PATCH 067/325] Meh. Cut-and-paste the wrong line. --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 194165365..44731f195 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(strace -f command_start.sh | tee /tmp/output; curl --upload-file ./hello.txt https://transfer.sh/hello.txt) +(strace -f command_start.sh | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output) fn_test_result_pass echo "" From d368cdb2a84f57e869a0f9103fa7fa6391bed979 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 03:56:53 +0100 Subject: [PATCH 068/325] fixes and comments --- lgsm/functions/command_mods_update.sh | 33 +++++++++++++-------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index c64bf5427..1e08679fb 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -20,10 +20,16 @@ fn_mods_update_init(){ echo "" # Installed mod dir is "${modslockfilefullpath}" # How many mods will be updated - if [ -f "${modslockfilefullpath}" ]; then - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - if - echo "${installedmodscount} addons will be updated:" + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + # If no mods to be updated + if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then + fn_print_information_nl "No mods or addons to be updated" + echo " * Did you install any mod using LGSM?" + fn_log_info "No mods or addons to be updated" + core_exit.sh + else + fn_print_information_nl "${installedmodscount} mods or addons will be updated:" + fn_log_info "${installedmodscount} mods or addons will be updated" # Loop showing mods to update installedmodsline=1 while [ $installedmodsline -le $installedmodscount ]; do @@ -31,27 +37,21 @@ fn_mods_update_init(){ let installedmodsline=installedmodsline+1 done sleep 2 - else - fn_print_info_nl "No mods to be updated!" - echo " * Did you install any mod using LGSM?" - fn_print_log "No mods to be updated" - core_exit.sh fi } +# Recursively list all installed mods and apply update fn_mods_update_loop(){ + # Reset line value installedmodline="1" while [ $installedmodsline -le $installedmodscount ]; do + # Current line defines current mod command currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" - fn_mod_get_info_from_command if [ -n "${currentmod}" ]; then - fn_print_dots_nl "Updating ${modprettyname}" - sleep 0.5 - fn_script_log "Updating ${modprettyname}." # Get mod info fn_mod_get_info_from_command - # Check if mod is already installed - fn_mod_already_installed + fn_print_dots_nl "Updating ${modprettyname}" + fn_script_log "Updating ${modprettyname}." # Check and create required directories fn_mods_dir # Clear lgsm/tmp/mods dir if exists then recreate it @@ -70,8 +70,7 @@ fn_mods_update_loop(){ fn_clear_tmp_mods fn_print_ok_nl "${modprettyname} installed." fn_script_log "${modprettyname} installed." - let installedmodsline=installedmodsline+1 - + let installedmodsline=installedmodsline+1 else fn_print_fail "No mod was selected." core_exit.sh From 663763e6a34d05daf6747a7770e3764600c2e1a8 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 20:57:23 -0600 Subject: [PATCH 069/325] Floundering a bit grok'ing travis. --- tests/tests_jc2server.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 44731f195..83133814a 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,8 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(strace -f command_start.sh | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output) +strace -f (command_start.sh) | tee /tmp/output +curl --upload-file /tmp/output https://transfer.sh/output fn_test_result_pass echo "" From e83e9b62d2e8bdfa6781a3074cb579aad509289a Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:03:28 -0600 Subject: [PATCH 070/325] More playing with travis. --- tests/tests_jc2server.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 83133814a..06b44cc89 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,8 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f (command_start.sh) | tee /tmp/output -curl --upload-file /tmp/output https://transfer.sh/output +strace -f ~/jc2server start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output fn_test_result_pass echo "" From b0aa04f723d29c36a167d3e72387e6ca6a7354ea Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:06:54 -0600 Subject: [PATCH 071/325] IBID --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 06b44cc89..d06379bca 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f ~/jc2server start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output +strace -f ./tests-jc2server.sh start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output fn_test_result_pass echo "" From c9a655c46cfc4d12b85d432f6993960cdaabdfb0 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:10:24 -0600 Subject: [PATCH 072/325] IBID --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index d06379bca..a6a340b7c 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f ./tests-jc2server.sh start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output +strace -f tests/tests-jc2server.sh start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output fn_test_result_pass echo "" From 83617a604ca4b7f7565fb413b2df985a06c55adc Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:17:11 -0600 Subject: [PATCH 073/325] ibid --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index a6a340b7c..ce48d5265 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f tests/tests-jc2server.sh start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output +strace -f tests/tests_jc2server.sh start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output fn_test_result_pass echo "" From da8c08c5ef12f183b4f90bc3b7b6b5db83b1f59a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:17:37 +0100 Subject: [PATCH 074/325] typo --- lgsm/functions/command_mods_update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 1e08679fb..a7fd0c572 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -25,11 +25,11 @@ fn_mods_update_init(){ if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then fn_print_information_nl "No mods or addons to be updated" echo " * Did you install any mod using LGSM?" - fn_log_info "No mods or addons to be updated" + fn_scrip_log_info "No mods or addons to be updated" core_exit.sh else fn_print_information_nl "${installedmodscount} mods or addons will be updated:" - fn_log_info "${installedmodscount} mods or addons will be updated" + fn_script_log_info "${installedmodscount} mods or addons will be updated" # Loop showing mods to update installedmodsline=1 while [ $installedmodsline -le $installedmodscount ]; do @@ -43,7 +43,7 @@ fn_mods_update_init(){ # Recursively list all installed mods and apply update fn_mods_update_loop(){ # Reset line value - installedmodline="1" + installedmodsline="1" while [ $installedmodsline -le $installedmodscount ]; do # Current line defines current mod command currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" From 5649a226c8d27177637da67738b76f11a9b0cbfb Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:20:30 -0600 Subject: [PATCH 075/325] ibid --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index ce48d5265..b03542993 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f tests/tests_jc2server.sh start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output +strace -f bash tests/tests_jc2server.sh start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output fn_test_result_pass echo "" From ef4b57cbd0f140652bee744b14807f63f205a052 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:24:41 -0600 Subject: [PATCH 076/325] closer to a closer. --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index b03542993..0bee062e8 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f bash tests/tests_jc2server.sh start | tee /tmp/output; curl --upload-file /tmp/output https://transfer.sh/output +strace -f bash tests/tests_jc2server.sh start > /tmp/output 2>&1; curl --upload-file /tmp/output https://transfer.sh/output fn_test_result_pass echo "" From 9929c3ecbde9f8740a4dd7666047b9a202a358b1 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:29:35 -0600 Subject: [PATCH 077/325] back to square 1 --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 0bee062e8..cd765b480 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f bash tests/tests_jc2server.sh start > /tmp/output 2>&1; curl --upload-file /tmp/output https://transfer.sh/output +(command_start.sh) fn_test_result_pass echo "" From 214d755b027306a8b8fa91e0b97eba0931c0c801 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:29:52 +0100 Subject: [PATCH 078/325] fn_mod_lowercase --- lgsm/functions/mods_core.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index ac1b0ab61..e67f1bc45 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -69,6 +69,17 @@ fn_mod_extract(){ fn_dl_extract "${filedir}" "${filename}" "${extractdir}" } +fn_mod_lowercase(){ + # Converting files to lowercase + if [ "${modlowercase}" == "LowercaseOn" ]; then + fn_print_dots "Converting ${modprettyname} files to lowercase" + fn_script_log "Converting ${modprettyname} files to lowercase" + find "${extractdir}" -exec readlink -e '{}' \; | rename 'y/A-Z/a-z/' + fn_print_ok "Converting ${modprettyname} files to lowercase" + sleep 1 + fi +} + fn_mod_fileslist(){ # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list From 389b6a1c55d26ed3b0b3ca9c8c51023f87a1336f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:35:57 +0100 Subject: [PATCH 079/325] added lowercase convert to install --- lgsm/functions/command_mods_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 0b9d64eff..c4039951b 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -61,6 +61,8 @@ fn_mod_installation(){ fn_mod_dl # Extract the mod fn_mod_extract + # Convert to lowercase if needed + fn_mod_lowercase # Build a file list fn_mod_fileslist # Copying to destination From 7721c4be0be6e9b47045cef770aaa7c1a7473acc Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:35:58 +0100 Subject: [PATCH 080/325] added lowercase convert to update --- lgsm/functions/command_mods_update.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index a7fd0c572..a271a3163 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -61,6 +61,10 @@ fn_mods_update_loop(){ fn_mod_dl # Extract the mod fn_mod_extract + # Remove files that should not be erased + # fn_remove_cfg_files + # Convert to lowercase if needed + fn_mod_lowercase # Build a file list fn_mod_fileslist # Copying to destination From da4d7f146cd858a34e0e0307119495c4fc3788b3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:38:27 +0100 Subject: [PATCH 081/325] changed message for already installed mod --- lgsm/functions/mods_core.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index e67f1bc45..2326f2135 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -98,7 +98,8 @@ fn_mod_already_installed(){ if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then echo "" fn_print_warning_nl "${modprettyname} has already been installed." - echo " * Mod files will be overwritten." + echo " * Config files might be overwritten." + echo " * Press ctrl + c to abort." sleep 4 fi fi From d1d47dd2e7f5c987cf644bdbd905900e4f506ecf Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:43:53 -0600 Subject: [PATCH 082/325] testing another aspect --- tests/tests_jc2server.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index cd765b480..657854d17 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,8 +358,10 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus +bash -x tests/tests_jc2server.sh start (command_start.sh) fn_test_result_pass +find . -name *.log echo "" echo "3.2 - start - online" From fe05fc466f7dbaf645bf488a4d5d8d0ed651fdc7 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 21:52:28 -0600 Subject: [PATCH 083/325] more tests. [is what bad students everywhere have never said, ever] --- tests/tests_jc2server.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 657854d17..05aae74d9 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,8 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -bash -x tests/tests_jc2server.sh start +bash -x tests/tests_jc2server.sh start > /tmp/output 2>&1 +curl --upload-file /tmp/output https://transfer.sh/lgsm (command_start.sh) fn_test_result_pass find . -name *.log From d6c5bf446e6227b14de6ebf4fb7597cb84e4eb0e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 04:59:56 +0100 Subject: [PATCH 084/325] better lowercase algorithm --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 2326f2135..9312fe352 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -74,7 +74,7 @@ fn_mod_lowercase(){ if [ "${modlowercase}" == "LowercaseOn" ]; then fn_print_dots "Converting ${modprettyname} files to lowercase" fn_script_log "Converting ${modprettyname} files to lowercase" - find "${extractdir}" -exec readlink -e '{}' \; | rename 'y/A-Z/a-z/' + find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; fn_print_ok "Converting ${modprettyname} files to lowercase" sleep 1 fi From 7826ee237e55667fa01ce8474e0cc299d0a3d415 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:07:48 -0600 Subject: [PATCH 085/325] more tests --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 05aae74d9..3fdd87ad8 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -bash -x tests/tests_jc2server.sh start > /tmp/output 2>&1 +bash -x tests/tests_jc2server.sh start | tee /tmp/output 2>&1 curl --upload-file /tmp/output https://transfer.sh/lgsm (command_start.sh) fn_test_result_pass From d706670fd3bf3ff1700d7119196083c425be016e Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:13:30 -0600 Subject: [PATCH 086/325] more tests --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 3fdd87ad8..4a1681201 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -bash -x tests/tests_jc2server.sh start | tee /tmp/output 2>&1 +bash -x tests/jc2server start | tee /tmp/output 2>&1 curl --upload-file /tmp/output https://transfer.sh/lgsm (command_start.sh) fn_test_result_pass From 8a3411b51a3b30d9c9a4df4855ddedee6a9024c2 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:17:39 -0600 Subject: [PATCH 087/325] travis-ty --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 4a1681201..17653a658 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -359,10 +359,10 @@ echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus bash -x tests/jc2server start | tee /tmp/output 2>&1 +find . >> /tmp/output curl --upload-file /tmp/output https://transfer.sh/lgsm (command_start.sh) fn_test_result_pass -find . -name *.log echo "" echo "3.2 - start - online" From 52565e889024807a16121d22fe0be6657871a95a Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:23:26 -0600 Subject: [PATCH 088/325] travisty --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 17653a658..f0807f127 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -bash -x tests/jc2server start | tee /tmp/output 2>&1 +bash -x tests/lgsm/functions/command_start.sh | tee /tmp/output 2>&1 find . >> /tmp/output curl --upload-file /tmp/output https://transfer.sh/lgsm (command_start.sh) From 85fcb07ccd73bb83bfcc89a448d218d52cfed335 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:29:52 -0600 Subject: [PATCH 089/325] travista. --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index f0807f127..5eb26df9d 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,7 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -bash -x tests/lgsm/functions/command_start.sh | tee /tmp/output 2>&1 +strace -f tests/lgsm/functions/command_start.sh > tee /tmp/output 2>&1 find . >> /tmp/output curl --upload-file /tmp/output https://transfer.sh/lgsm (command_start.sh) From dd27330aebdadc407e5f974a1051f3e06fd3a249 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:36:34 -0600 Subject: [PATCH 090/325] tests --- tests/tests_jc2server.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 5eb26df9d..801d344b3 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,9 +358,11 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f tests/lgsm/functions/command_start.sh > tee /tmp/output 2>&1 +strace -f tests/lgsm/functions/command_start.sh > /tmp/output 2>&1 find . >> /tmp/output curl --upload-file /tmp/output https://transfer.sh/lgsm +curl --upload-file ./tests/log/script/*.log https://transfer.sh/slog +curl --upload-file ./tests/log/console/*.log https://transfer.sh/clog (command_start.sh) fn_test_result_pass From fdb46fafd17878fc916a59b6951ba6c32a896e10 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:38:07 -0600 Subject: [PATCH 091/325] Move the logs --- tests/tests_jc2server.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 801d344b3..5401dfa02 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,12 +358,9 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -strace -f tests/lgsm/functions/command_start.sh > /tmp/output 2>&1 -find . >> /tmp/output -curl --upload-file /tmp/output https://transfer.sh/lgsm +(command_start.sh) curl --upload-file ./tests/log/script/*.log https://transfer.sh/slog curl --upload-file ./tests/log/console/*.log https://transfer.sh/clog -(command_start.sh) fn_test_result_pass echo "" From 2abbd25bfb6da5b98001d96af102289fc37c9e8f Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:43:42 -0600 Subject: [PATCH 092/325] Path tweak --- tests/tests_jc2server.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 5401dfa02..4540e44a0 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,6 +358,7 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus +PATH=$PATH:./tests/lgsm/functions strace -f tests/lgsm/functions/command_start.sh > /tmp/output 2>&1 (command_start.sh) curl --upload-file ./tests/log/script/*.log https://transfer.sh/slog curl --upload-file ./tests/log/console/*.log https://transfer.sh/clog From 650f992b3edfdbe1413753ef77e5c4c5f14c7a64 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:49:25 -0600 Subject: [PATCH 093/325] nothing to see here. (so I added echo) --- tests/tests_jc2server.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 4540e44a0..93194587c 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,9 +358,11 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -PATH=$PATH:./tests/lgsm/functions strace -f tests/lgsm/functions/command_start.sh > /tmp/output 2>&1 +PATH=${PATH}:./tests/lgsm/functions strace -f tests/lgsm/functions/command_start.sh > /tmp/output 2>&1 (command_start.sh) +echo curl --upload-file ./tests/log/script/*.log https://transfer.sh/slog curl --upload-file ./tests/log/script/*.log https://transfer.sh/slog +echo curl --upload-file ./tests/log/console/*.log https://transfer.sh/clog curl --upload-file ./tests/log/console/*.log https://transfer.sh/clog fn_test_result_pass From 62d5b0833549f0088f3773467b0089ef04bc9ba3 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 22:54:15 -0600 Subject: [PATCH 094/325] curl it --- tests/tests_jc2server.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 93194587c..35f15bfc9 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -360,10 +360,10 @@ requiredstatus="OFFLINE" fn_setstatus PATH=${PATH}:./tests/lgsm/functions strace -f tests/lgsm/functions/command_start.sh > /tmp/output 2>&1 (command_start.sh) -echo curl --upload-file ./tests/log/script/*.log https://transfer.sh/slog -curl --upload-file ./tests/log/script/*.log https://transfer.sh/slog -echo curl --upload-file ./tests/log/console/*.log https://transfer.sh/clog -curl --upload-file ./tests/log/console/*.log https://transfer.sh/clog +for x in ./tests/log/*/*.log /tmp/output +do +curl --upload-file $x https://transfer.sh/lgsm +done fn_test_result_pass echo "" From 9c076536f349600cb2d81946cb46159e7da1c119 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 23:02:17 -0600 Subject: [PATCH 095/325] Packages #1 --- tests/tests_jc2server.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 35f15bfc9..ad54edebe 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,12 +358,9 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -PATH=${PATH}:./tests/lgsm/functions strace -f tests/lgsm/functions/command_start.sh > /tmp/output 2>&1 +dpkg -l > /tmp/packages +curl --upload-file ./tmp/packages https://transfer.sh/lgsm (command_start.sh) -for x in ./tests/log/*/*.log /tmp/output -do -curl --upload-file $x https://transfer.sh/lgsm -done fn_test_result_pass echo "" From 606570b11648d678c4dde6d134cd7ef781934e56 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 23:03:04 -0600 Subject: [PATCH 096/325] Packages 2 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 84fc85d9e..5ea64bd39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: bash -sudo: false +sudo: required env: - DISTRO=ubuntu-trusty From 47a6c84dbcaeb3f7ddcd86c6868fa502cc89caf2 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 23:05:01 -0600 Subject: [PATCH 097/325] Packages 1(b) --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index ad54edebe..48c9f09cd 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -359,7 +359,7 @@ echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus dpkg -l > /tmp/packages -curl --upload-file ./tmp/packages https://transfer.sh/lgsm +curl --upload-file /tmp/packages https://transfer.sh/lgsm (command_start.sh) fn_test_result_pass From cc7ddcac7f92ed945dfe060a17fb28ac38e1eb6e Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 23:05:22 -0600 Subject: [PATCH 098/325] Packages 1(a) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5ea64bd39..84fc85d9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: bash -sudo: required +sudo: false env: - DISTRO=ubuntu-trusty From 58fa09aa1ccfb413a50631d5523f8016cf10b678 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sat, 14 Jan 2017 23:10:37 -0600 Subject: [PATCH 099/325] put sudo back in. check packages --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 84fc85d9e..5ea64bd39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: bash -sudo: false +sudo: required env: - DISTRO=ubuntu-trusty From 1f6c9c907823a4f3ad33980c3236657b2bb21986 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 06:29:19 +0100 Subject: [PATCH 100/325] Disable update mods --- lgsm/functions/command_mods_update.sh | 61 ++++++++++++++++----------- 1 file changed, 36 insertions(+), 25 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index a271a3163..cc2e25cb7 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -50,33 +50,44 @@ fn_mods_update_loop(){ if [ -n "${currentmod}" ]; then # Get mod info fn_mod_get_info_from_command - fn_print_dots_nl "Updating ${modprettyname}" - fn_script_log "Updating ${modprettyname}." - # Check and create required directories - fn_mods_dir - # Clear lgsm/tmp/mods dir if exists then recreate it - fn_clear_tmp_mods - fn_mods_tmpdir - # Download mod - fn_mod_dl - # Extract the mod - fn_mod_extract - # Remove files that should not be erased - # fn_remove_cfg_files - # Convert to lowercase if needed - fn_mod_lowercase - # Build a file list - fn_mod_fileslist - # Copying to destination - fn_mod_copy_destination - # Ending with installation routines - fn_mod_add_list - fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} installed." - fn_script_log "${modprettyname} installed." - let installedmodsline=installedmodsline+1 + # Don't update the mod if it's policy is to "NOUPDATE" + if [ "${modkeepfiles}" == "NOUPDATE" ]; then + fn_print_warning "${modprettyname} update has been disabled by LGSM." + echo " * Usual reason is to prevent erasing custom files." + echo " * If you still wish to update this mod: + echo " * 1) Backup your critical mod files + echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal) + echo " * 3) Re-install the mod with ./${selfname} mods-install" + else + fn_print_dots_nl "Updating ${modprettyname}" + fn_script_log "Updating ${modprettyname}." + # Check and create required directories + fn_mods_dir + # Clear lgsm/tmp/mods dir if exists then recreate it + fn_clear_tmp_mods + fn_mods_tmpdir + # Download mod + fn_mod_dl + # Extract the mod + fn_mod_extract + # Remove files that should not be erased + # fn_remove_cfg_files + # Convert to lowercase if needed + fn_mod_lowercase + # Build a file list + fn_mod_fileslist + # Copying to destination + fn_mod_copy_destination + # Ending with installation routines + fn_mod_add_list + fn_clear_tmp_mods + fn_print_ok_nl "${modprettyname} installed." + fn_script_log "${modprettyname} installed." + let installedmodsline=installedmodsline+1 + fi else fn_print_fail "No mod was selected." + fn_script_log_fail "No mod was selected." core_exit.sh fi done From 3b90b501d324b13faacbb54962a1893680dfd823 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 06:32:34 +0100 Subject: [PATCH 101/325] missing dir created & preparing cfg keep solution --- lgsm/functions/mods_core.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9312fe352..1e1822a19 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -80,7 +80,20 @@ fn_mod_lowercase(){ fi } +fn_remove_cfg_files(){ + # Remove config file after extraction for updates set by ${modkeepfiles} + if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then + echo "Prevent erasing custom files." + echo "Todo list" + fi +} + fn_mod_fileslist(){ + # Create lgsm/data/mods directory + if [ ! -d "${modsdatadir}" ]; then + mkdir -p "${modsdatadir}" + fn_script_log "Created ${modsdatadir}" + fi # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" @@ -107,7 +120,7 @@ fn_mod_already_installed(){ # Add the mod to the installed mods list fn_mod_add_list(){ - # Create lgsm/data directory + # Create lgsm/data/mods directory if [ ! -d "${modsdatadir}" ]; then mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" From 0286aaed8cc4eed6b2277551728a1bf4ee3c8905 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 06:33:33 +0100 Subject: [PATCH 102/325] closed double quotes --- lgsm/functions/command_mods_update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index cc2e25cb7..13196e015 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -54,9 +54,9 @@ fn_mods_update_loop(){ if [ "${modkeepfiles}" == "NOUPDATE" ]; then fn_print_warning "${modprettyname} update has been disabled by LGSM." echo " * Usual reason is to prevent erasing custom files." - echo " * If you still wish to update this mod: - echo " * 1) Backup your critical mod files - echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal) + echo " * If you still wish to update this mod:" + echo " * 1) Backup your critical mod files" + echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" echo " * 3) Re-install the mod with ./${selfname} mods-install" else fn_print_dots_nl "Updating ${modprettyname}" From 97e30c95ff30cc0271e7e0867b2eb4af212b128c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 06:35:27 +0100 Subject: [PATCH 103/325] missing increment --- lgsm/functions/command_mods_update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 13196e015..a480cf17d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -52,12 +52,13 @@ fn_mods_update_loop(){ fn_mod_get_info_from_command # Don't update the mod if it's policy is to "NOUPDATE" if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_warning "${modprettyname} update has been disabled by LGSM." + fn_print_warning_nl "${modprettyname} update has been disabled by LGSM." echo " * Usual reason is to prevent erasing custom files." echo " * If you still wish to update this mod:" echo " * 1) Backup your critical mod files" echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" echo " * 3) Re-install the mod with ./${selfname} mods-install" + let installedmodsline=installedmodsline+1 else fn_print_dots_nl "Updating ${modprettyname}" fn_script_log "Updating ${modprettyname}." From cfe30b2b9d72c3539e92feb26490113ebfb13c31 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 08:16:38 +0100 Subject: [PATCH 104/325] Update mods_list.sh --- lgsm/functions/mods_list.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 28d8d5621..91ebb2ad6 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -20,7 +20,7 @@ modseparator="MOD" # Define mods information (required) fn_mods_info(){ - # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubfolders" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) + # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubdirs" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) # None of those values can be empty @@ -30,7 +30,7 @@ fn_mods_info(){ # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user # [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) # [4] | "filename": the output filename - # [5] | "modsubfolders": in how many subfolders is the mod (none is 1) + # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating @@ -41,8 +41,8 @@ fn_mods_info(){ # [13] | "Short Description" a description showed to the user upon installation # Source mods - mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "source;" "GAMES" "Garry's Mod;" "https://www.sourcemm.net" "Plugins Framework" ) - mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;" "source;" "GAMES" "Garry's Mod;" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) + mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "Garry's Mod;" "https://www.sourcemm.net" "Plugins Framework" ) + mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "Garry's Mod;" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) # Garry's Mod Addons mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) @@ -99,7 +99,7 @@ fi modprettyname="${mods_global_array[index+2]}" modurl="${mods_global_array[index+3]}" modfilename="${mods_global_array[index+4]}" - modsubfolders="${mods_global_array[index+5]}" + modsubdirs="${mods_global_array[index+5]}" modlowercase="${mods_global_array[index+6]}" modinstalldir="${mods_global_array[index+7]}" modkeepfiles="${mods_global_array[index+8]}" From 41230b0cfeb88e98d32588fc592b7fe0b0515fc0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:03:50 +0100 Subject: [PATCH 105/325] merging, to test and fix --- lgsm/functions/mods_core.sh | 81 +++++++++++++++++++++++++++++++++++-- 1 file changed, 78 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 1e1822a19..826ad7c4a 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -34,6 +34,10 @@ fn_clear_tmp_mods(){ rm -r "${modstmpdir}" fn_script_log "Clearing temp mod download directory: ${modstmpdir}" fi + # Clear temp file list as well + if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then + rm "${modsdatadir}/.removedfiles.tmp" + fi } # Create tmp download mod directory @@ -83,8 +87,24 @@ fn_mod_lowercase(){ fn_remove_cfg_files(){ # Remove config file after extraction for updates set by ${modkeepfiles} if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - echo "Prevent erasing custom files." - echo "Todo list" + # Upon mods updates, config files should not be overwritten + # We will just remove these files before copying the mod to the destination + removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modgames" using the ";" separator + for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do + # Put current game name into modtest variable + removefiletest="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + # If it matches + if [ -f "${extractdir}/${removefiletest}" ]||[ -d "${extractdir}/${removefiletest}" ]; then + # Then delete the file! + rm -R "${extractdir}/${removefiletest}" + # Write this file path in a tmp file, to rebuild a full file list + if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then + touch "${modsdatadir}/.removedfiles.tmp" + fi + echo "${removefiletest}" > ${modsdatadir}/.removedfiles.tmp" + fi + done fi } @@ -95,8 +115,12 @@ fn_mod_fileslist(){ fn_script_log "Created ${modsdatadir}" fi # ${modsdatadir}/${modcommand}-files.list - find "${extractdir}" -mindepth 1 -printf '%P\n' >> ${modsdatadir}/${modcommand}-files.list + find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" + # Adding removed files if needed + if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then + cat "${modsdatadir}/.removedfiles.tmp" >> ${modsdatadir}/${modcommand}-files.list + fi } fn_mod_copy_destination(){ @@ -136,3 +160,54 @@ fn_mod_add_list(){ fn_script_log "${modcommand} added to ${modslockfile}" fi } + +fn_check_files_list(){ + # File list must exist and be valid before any operation on it + if [ -f "${modsdatadir}/${modcommand}-files.list" ]; then + # How many lines is the file list + modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.list" | wc -l)" + # If file list is empty + if [ $modsfilelistsize -eq 0 ]; then + fn_print_error_nl "${modcommand}-files.list is empty" + echo "Exiting." + fn_scrip_log_fatal "${modcommand}-files.list is empty" + exitcode="2" + core_exit.sh + fi + else + fn_print_error_nl "${modsdatadir}/${modcommand}-files.list don't exist" + echo "Exiting." + fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.list don't exist" + exitcode="2" + core_exit.sh + fi +} + +fn_postinstall_tasks(){ + # Sourcemod, but any other game as well should never delete "cfg" or "addons" folder + # Prevent addons folder from being removed by clearing them in: ${modsdatadir}/${modcommand}-files.list + fn_check_files_list + # Output to the user + fn_print_information_nl "Rearranging ${modcommand}-files.list" + fn_script_log_info "Rearranging ${modcommand}-files.list" + smremovefromlist="cfg;addons" + # Loop through every single line to find any of the files to remove from the list + # that way these files won't get removed upon update or uninstall + fileslistline=1 + while [ $fileslistline -le $modsfilelistsize ]; do + testline="$(sed "${fileslistline}q;d" "${modsdatadir}/${modcommand}-files.list")" + # How many elements to remove from list + smremoveamount="$(echo "${smremovefromlist}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modkeepfiles" using the ";" separator + for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do + # Put current file into test variable + smremovetestvar="$( echo "${smremovefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" + # If it matches + if [ "${testline}" == "${smremovetestvar}" ]; then + # Then delete the line! + sed -i "${testline}d" "${modsdatadir}/${modcommand}-files.list" + fi + done + let fileslistline=fileslistline+1 + done +} From 6d381f079955f34252ba7827a29f4a0cf0fcc533 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:08:06 +0100 Subject: [PATCH 106/325] removed space --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 826ad7c4a..38fb1e376 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -110,7 +110,7 @@ fn_remove_cfg_files(){ fn_mod_fileslist(){ # Create lgsm/data/mods directory - if [ ! -d "${modsdatadir}" ]; then + if [ ! -d "${modsdatadir}" ]; then mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" fi From f280dd779464746f12807d6cebf851bddc07bcc7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:13:28 +0100 Subject: [PATCH 107/325] missing double quote --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 38fb1e376..082afb399 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -102,7 +102,7 @@ fn_remove_cfg_files(){ if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" fi - echo "${removefiletest}" > ${modsdatadir}/.removedfiles.tmp" + echo "${removefiletest}" > "${modsdatadir}/.removedfiles.tmp" fi done fi @@ -180,7 +180,7 @@ fn_check_files_list(){ fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.list don't exist" exitcode="2" core_exit.sh - fi + fi } fn_postinstall_tasks(){ From 8c399fcf460064ad8e28d2b751e7bacf4f173e6b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:18:54 +0100 Subject: [PATCH 108/325] added postinstall tasks --- lgsm/functions/command_mods_install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index c4039951b..6a3e05b20 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -69,6 +69,9 @@ fn_mod_installation(){ fn_mod_copy_destination # Ending with installation routines fn_mod_add_list + # Post install fixes + fn_postinstall_tasks + # Cleaning fn_clear_tmp_mods fn_print_ok_nl "${modprettyname} installed." fn_script_log "${modprettyname} installed." From 890e20438e81a515f76f6d75a600ccf807488063 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:20:53 +0100 Subject: [PATCH 109/325] added fn_postinstall_tasks & fn_remove_cfg_files --- lgsm/functions/command_mods_update.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index a480cf17d..390897d41 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -71,16 +71,19 @@ fn_mods_update_loop(){ fn_mod_dl # Extract the mod fn_mod_extract - # Remove files that should not be erased - # fn_remove_cfg_files # Convert to lowercase if needed fn_mod_lowercase + # Remove files that should not be erased + fn_remove_cfg_files # Build a file list fn_mod_fileslist # Copying to destination fn_mod_copy_destination # Ending with installation routines fn_mod_add_list + # Post install fixes + fn_postinstall_tasks + # Cleaning fn_clear_tmp_mods fn_print_ok_nl "${modprettyname} installed." fn_script_log "${modprettyname} installed." From f2dc5fd1a5333c927bffcd1e2f6fa3705f28d69b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:44:32 +0100 Subject: [PATCH 110/325] attempt to fix sed --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 082afb399..a24f88195 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -190,7 +190,7 @@ fn_postinstall_tasks(){ # Output to the user fn_print_information_nl "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" - smremovefromlist="cfg;addons" + smremovefromlist="cfg;addons;" # Loop through every single line to find any of the files to remove from the list # that way these files won't get removed upon update or uninstall fileslistline=1 @@ -205,7 +205,7 @@ fn_postinstall_tasks(){ # If it matches if [ "${testline}" == "${smremovetestvar}" ]; then # Then delete the line! - sed -i "${testline}d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/${testline}/d" "${modsdatadir}/${modcommand}-files.list" fi done let fileslistline=fileslistline+1 From 98174069416783180fba620fe6ea4178967b3483 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 09:45:40 +0100 Subject: [PATCH 111/325] sourcemod available for gmod --- lgsm/functions/mods_list.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 91ebb2ad6..24a81f262 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -41,8 +41,8 @@ fn_mods_info(){ # [13] | "Short Description" a description showed to the user upon installation # Source mods - mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "Garry's Mod;" "https://www.sourcemm.net" "Plugins Framework" ) - mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "Garry's Mod;" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) + mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) + mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "NOTGAMES" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) # Garry's Mod Addons mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) From cf6de952e18e05423d89a96c4943516d290fcd7d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 10:02:39 +0100 Subject: [PATCH 112/325] try replacing with grep --- lgsm/functions/mods_core.sh | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index a24f88195..2bb9a80da 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -190,24 +190,16 @@ fn_postinstall_tasks(){ # Output to the user fn_print_information_nl "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" - smremovefromlist="cfg;addons;" + removefromlist="cfg;addons;" # Loop through every single line to find any of the files to remove from the list # that way these files won't get removed upon update or uninstall - fileslistline=1 - while [ $fileslistline -le $modsfilelistsize ]; do - testline="$(sed "${fileslistline}q;d" "${modsdatadir}/${modcommand}-files.list")" - # How many elements to remove from list - smremoveamount="$(echo "${smremovefromlist}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modkeepfiles" using the ";" separator - for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do - # Put current file into test variable - smremovetestvar="$( echo "${smremovefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # If it matches - if [ "${testline}" == "${smremovetestvar}" ]; then - # Then delete the line! - sed -i "/${testline}/d" "${modsdatadir}/${modcommand}-files.list" - fi - done - let fileslistline=fileslistline+1 + # How many elements to remove from list + smremoveamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modkeepfiles" using the ";" separator + for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do + # Put current file into test variable + rmtestvar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" + # Remove matches + grep -vFf ${modsdatadir}/${modcommand}-files.list "${rmtestvar}" > ${modsdatadir}/${modcommand}-files.list done } From 4e79f341e5fff091c4096a982826f0aac3c508c6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 10:07:16 +0100 Subject: [PATCH 113/325] rollback to fix --- lgsm/functions/mods_core.sh | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 2bb9a80da..d39fc2204 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -190,16 +190,24 @@ fn_postinstall_tasks(){ # Output to the user fn_print_information_nl "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" - removefromlist="cfg;addons;" + smremovefromlist="cfg;addons;" # Loop through every single line to find any of the files to remove from the list # that way these files won't get removed upon update or uninstall - # How many elements to remove from list - smremoveamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modkeepfiles" using the ";" separator - for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do - # Put current file into test variable - rmtestvar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # Remove matches - grep -vFf ${modsdatadir}/${modcommand}-files.list "${rmtestvar}" > ${modsdatadir}/${modcommand}-files.list + fileslistline=1 + while [ $fileslistline -le $modsfilelistsize ]; do + testline="$(sed "${fileslistline}q;d" "${modsdatadir}/${modcommand}-files.list")" + # How many elements to remove from list + smremoveamount="$(echo "${smremovefromlist}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modkeepfiles" using the ";" separator + for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do + # Put current file into test variable + smremovetestvar="$( echo "${smremovefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" + # If it matches + if [ "${testline}" == "${smremovetestvar}" ]; then + # Then delete the line! + sed -i "${testline}d" "${modsdatadir}/${modcommand}-files.list" + fi + done + let fileslistline=fileslistline+1 done } From 4804346806635d1aa8dd133fe14675ac0dd927b2 Mon Sep 17 00:00:00 2001 From: CedarLUG Date: Sun, 15 Jan 2017 08:56:40 -0600 Subject: [PATCH 114/325] This should roll everything back to a single one-line "sudo: required". --- .travis.yml | 1 - tests/tests_jc2server.sh | 2 -- 2 files changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5ea64bd39..d385c27fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,6 @@ addons: - libstdc++6:i386 - telnet - expect - - strace script: diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 48c9f09cd..cd765b480 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -358,8 +358,6 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -dpkg -l > /tmp/packages -curl --upload-file /tmp/packages https://transfer.sh/lgsm (command_start.sh) fn_test_result_pass From 37fae9b0875a865e712c427c6ae20702f9c6eff3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 15 Jan 2017 17:47:18 +0000 Subject: [PATCH 115/325] Fixed some insonsistancys with the comments --- 7DaysToDie/sdtdserver | 1 - ARKSurvivalEvolved/arkserver | 1 - Arma3/arma3server | 1 - Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 1 - BladeSymphony/bsserver | 1 - BrainBread2/bb2server | 1 - CallOfDuty2/cod2server | 1 - CallOfDuty4/cod4server | 1 - CallOfDutyUnitedOffensive/coduoserver | 1 - CallOfDutyWorldAtWar/codwawserver | 1 - CodenameCURE/ccserver | 3 ++- CounterStrike/csserver | 1 - CounterStrikeConditionZero/csczserver | 1 - CounterStrikeGlobalOffensive/csgoserver | 1 - CounterStrikeSource/cssserver | 1 - DayOfDefeat/dodserver | 1 - DayOfDefeatSource/dodsserver | 1 - DayOfInfamy/doiserver | 1 - DeathmatchClassic/dmcserver | 1 - DoubleActionBoogaloo/dabserver | 1 - EmpiresMod/emserver | 1 - Factorio/fctrserver | 1 - FistfulOfFrags/fofserver | 1 - GarrysMod/gmodserver | 1 - GoldenEyeSource/gesserver | 3 +-- HalfLife2Deathmatch/hl2dmserver | 1 - HalfLifeDeathmatch/hldmserver | 1 - HalfLifeDeathmatchSource/hldmsserver | 1 - Insurgency/insserver | 1 - JustCause2/jc2server | 4 ---- KillingFloor/kfserver | 3 ++- Left4Dead/l4dserver | 1 - Left4Dead2/l4d2server | 1 - Minecraft/mcserver | 1 - Mumble/mumbleserver | 1 - NS2Combat/ns2cserver | 1 - NaturalSelection2/ns2server | 1 - NoMoreRoomInHell/nmrihserver | 1 - OpposingForce/opforserver | 1 - PiratesVikingandKnightsII/pvkiiserver | 1 - QuakeWorld/qwserver | 1 - RedOrchestra/roserver | 1 - Ricochet/ricochetserver | 4 +--- Rust/rustserver | 1 - Starbound/sbserver | 1 - SvenCoop/svenserver | 1 - TeamFortress2/tf2server | 1 - TeamFortressClassic/tfcserver | 1 - Teeworlds/twserver | 1 - Terraria/terrariaserver | 1 - UnrealTournament/utserver | 1 - UnrealTournament2004/ut2k4server | 1 - UnrealTournament99/ut99server | 1 - WolfensteinEnemyTerritory/wetserver | 4 ---- tests/tests_jc2server.sh | 1 - tests/tests_ts3server.sh | 1 + 57 files changed, 8 insertions(+), 65 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 36bfbed5d..6ca116aa7 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -30,7 +30,6 @@ steampass='password' ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | http://7daystodie.gamepedia.com/Server fn_parms(){ parms="-logfile ${gamelogdir}/output_log__`date +%Y-%m-%d__%H-%M-%S`.txt -quit -batchmode -nographics -dedicated -configfile=${servercfgfullpath}" } diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 6bc5079c0..da408b353 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -30,7 +30,6 @@ maxplayers="70" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="\"TheIsland?listen?MultiHome=${ip}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?\"" } diff --git a/Arma3/arma3server b/Arma3/arma3server index 8898beb93..8d6dcb210 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -46,7 +46,6 @@ servermods="" bepath="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="-netlog -ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -bepath=${bepath} -autoinit -loadmissiontomemory" } diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 42d616617..51b8dfcc0 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -22,7 +22,7 @@ version="170110" #### Server Settings #### -## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ parms="+hostServer 1 +dedicated 1" } diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 18f0647bb..1b6c9d573 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -36,7 +36,6 @@ ip="0.0.0.0" gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game bms -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 0bac17035..38c71ce1e 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -35,7 +35,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-autoupdate -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 50e46bf72..df5034bb8 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -39,7 +39,6 @@ ip="0.0.0.0" gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game brainbread2 -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server index ecf79db64..db4f07af9 100755 --- a/CallOfDuty2/cod2server +++ b/CallOfDuty2/cod2server @@ -23,7 +23,6 @@ version="170110" #### Server Settings #### ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters - defaultmap="mp_leningrad" maxclients="20" port="28960" diff --git a/CallOfDuty4/cod4server b/CallOfDuty4/cod4server index 8ccebd949..6b4a0260e 100644 --- a/CallOfDuty4/cod4server +++ b/CallOfDuty4/cod4server @@ -23,7 +23,6 @@ version="170110" #### Server Settings #### ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters - defaultmap="mp_crossfire" maxclients="32" port="28960" diff --git a/CallOfDutyUnitedOffensive/coduoserver b/CallOfDutyUnitedOffensive/coduoserver index 02f2b8b09..c3d71ae8a 100755 --- a/CallOfDutyUnitedOffensive/coduoserver +++ b/CallOfDutyUnitedOffensive/coduoserver @@ -23,7 +23,6 @@ version="170110" #### Server Settings #### ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters - defaultmap="mp_cassino" maxclients="20" port="28960" diff --git a/CallOfDutyWorldAtWar/codwawserver b/CallOfDutyWorldAtWar/codwawserver index 2f3e93fae..5e3681ead 100755 --- a/CallOfDutyWorldAtWar/codwawserver +++ b/CallOfDutyWorldAtWar/codwawserver @@ -23,7 +23,6 @@ version="170110" #### Server Settings #### ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters - defaultmap="mp_castle" maxclients="20" port="28960" diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 08eb09a3d..3196b993c 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -20,6 +20,8 @@ version="170110" ######## Settings ######## ########################## +#### Server Settings #### + ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="cbe_bunker" maxplayers="6" @@ -29,7 +31,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game cure -insecure -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/CounterStrike/csserver b/CounterStrike/csserver index c23d9c988..4add519a6 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game cstrike -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 3e25bb09a..8333438b9 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game czero -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index de6450a99..8a306dc03 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -54,7 +54,6 @@ gslt="" # ws_start_map="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game csgo -usercon -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers_override ${maxplayers} +mapgroup ${mapgroup} +game_mode ${gamemode} +game_type ${gametype} +host_workshop_collection ${ws_collection_id} +workshop_start_map ${ws_start_map} -authkey ${authkey}" } diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index dca4bfa8a..bdee401bb 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -37,7 +37,6 @@ updateonstart="off" gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game cstrike -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index d9e1b19c4..efe5861f8 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -31,7 +31,6 @@ ip="0.0.0.0" updateonstart="off" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game dod -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 2e98b7771..3508e0686 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -31,7 +31,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | ttps://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game dod -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 215a1d8a4..5d2ed38fe 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -33,7 +33,6 @@ ip="0.0.0.0" workshop="0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game doi -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers} +sv_workshop_enabled ${workshop}" } diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index a0e438363..4ef098e91 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game dmc -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 821fbf872..245cd0c59 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -31,7 +31,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index d64f0491a..36cb92f5a 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -36,7 +36,6 @@ ip="0.0.0.0" gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game empires -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/Factorio/fctrserver b/Factorio/fctrserver index 0d10ee24d..8843668e4 100644 --- a/Factorio/fctrserver +++ b/Factorio/fctrserver @@ -29,7 +29,6 @@ rconpassword="CHANGE_ME" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="--start-server ${filesdir}/save1.zip --server-settings ${servercfgfullpath} --port ${port} --rcon-port ${rconport} --rcon-password ${rconpassword}" } diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 8cbda31ac..988a1b680 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -31,7 +31,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game fof -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index a73ac81fa..c432c6769 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -46,7 +46,6 @@ customparms="+r_hunkalloclightmaps 0" gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} -tickrate ${tickrate} +host_workshop_collection ${workshopcollectionid} -authkey ${workshopauth} +clientport ${clientport} +tv_port ${sourcetvport} +gamemode ${gamemode} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers} ${customparms}" } diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index b5c7aa25b..d1520cc35 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -22,7 +22,7 @@ version="170110" #### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="ge_archives" maxplayers="16" port="27015" @@ -31,7 +31,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game gesource -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index bb4f2c73a..b5a15f78c 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -31,7 +31,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game hl2mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index c2a95d39f..8ba1b8d01 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game valve -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 707881508..c25dc3fbf 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -31,7 +31,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game hl1mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/Insurgency/insserver b/Insurgency/insserver index 722fcea46..eac3777c3 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -33,7 +33,6 @@ ip="0.0.0.0" workshop="0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game insurgency -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers} +sv_workshop_enabled ${workshop} -norestart" } diff --git a/JustCause2/jc2server b/JustCause2/jc2server index d36ef0a00..626df4b3a 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -20,11 +20,7 @@ version="170110" ######## Settings ######## ########################## -#### Server Settings #### -# No settings available for Just Cause 2 - ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="" } diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index e42dd92a1..baca47dcc 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -30,10 +30,11 @@ steampass='password' defaultmap="KF-BioticsLab.rom" ip="0.0.0.0" +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" -# Start Variables for Objective mode +# Server Start Command for Objective mode #defaultmap="KFO-Steamland" #parms="server ${defaultmap}?Game=KFStoryGame.KFStoryGame?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" } diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index a6446c8bf..2216a5f93 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game left4dead -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 23902ea43..496444a20 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game left4dead2 -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 74e03c6ab..82999f5a3 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -26,7 +26,6 @@ version="170110" javaram="1024" # -Xmx$1024M ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="nogui" } diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 4e4a28f4c..6dd9eb2d3 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -24,7 +24,6 @@ version="170110" # Use .ini config file for Mumble (Murmur) server. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="-fg -ini ${servercfgfullpath}" } diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index b5fcd7b8f..c1b39d836 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -42,7 +42,6 @@ password="" # -password \"${password}\" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | http://wiki.unknownworlds.com/ns2/Dedicated_Server fn_parms(){ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${servercfgdir}\" -modstorage \"${modstoragedir}\" -mods \"${mods}\"" } diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index c662ecbd5..bc01063c2 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -42,7 +42,6 @@ password="" # -password \"${password}\" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | http://wiki.unknownworlds.com/ns2/Dedicated_Server fn_parms(){ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${servercfgdir}\" -logdir \"${gamelogdir}\" -modstorage \"${modstoragedir}\" -mods \"${mods}\"" } diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 54e59c299..5a925ea54 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -36,7 +36,6 @@ ip="0.0.0.0" gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game nmrih -insecure -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 5d347f06b..945f353d4 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game gearbox -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 56ad17438..6a715b7b9 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -31,7 +31,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game pvkii -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/QuakeWorld/qwserver b/QuakeWorld/qwserver index 7e27f0a89..1b92190e3 100644 --- a/QuakeWorld/qwserver +++ b/QuakeWorld/qwserver @@ -27,7 +27,6 @@ port="27500" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-port ${port} -game ktx +exec ${servercfg}" } diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 8170bb53d..0812c7f41 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -31,7 +31,6 @@ defaultmap="RO-Arad.rom" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="server ${defaultmap}?game=ROGame.ROTeamGame?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}" } diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index d3165f2fd..16d9fca81 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -22,7 +22,7 @@ version="170110" #### Server Settings #### -# Start Variables +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="rc_arena" maxplayers="16" port="27015" @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game ricochet -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } @@ -50,7 +49,6 @@ ip="0.0.0.0" gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="" } diff --git a/Rust/rustserver b/Rust/rustserver index 14d9e4e42..aa740f8b1 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -38,7 +38,6 @@ saveinterval="300" # Auto-save in seconds tickrate="30" # default 30; range : 15 to 100 ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server fn_parms(){ parms="-batchmode +server.ip ${ip} +server.port ${port} +server.tickrate ${tickrate} +server.hostname \"${servername}\" +server.identity \"${servicename}\" ${conditionalseed} +server.maxplayers ${maxplayers} +server.worldsize ${worldsize} +server.saveinterval ${saveinterval} +rcon.web ${rconweb} +rcon.ip ${ip} +rcon.port ${rconport} +rcon.password \"${rconpassword}\" -logfile ${gamelogfile}" } diff --git a/Starbound/sbserver b/Starbound/sbserver index e6b37dc71..899d846dc 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -30,7 +30,6 @@ steampass='password' ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="" } diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index b2e7f35e8..10e27db1b 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game svencoop -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index a278d0921..bbc242d0b 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -36,7 +36,6 @@ ip="0.0.0.0" gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ parms="-game tf -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index beec9da19..6c3a7d9eb 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -30,7 +30,6 @@ clientport="27005" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 fn_parms(){ parms="-game tfc -strictportbind _ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 4a9684003..d0de5a1d0 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -30,7 +30,6 @@ steampass='password' ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="-f ${servercfgfullpath}" } diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index a55c57286..a155828eb 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -30,7 +30,6 @@ steampass='password' ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="-config ${servercfgfullpath}" } diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index 49d955329..e95414adc 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -31,7 +31,6 @@ ip="0.0.0.0" port="7777" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -port=${port}" } diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index c235f0746..0b49bd361 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -27,7 +27,6 @@ defaultmap="DM-Rankin" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care | fn_parms(){ parms="server ${defaultmap}?game=XGame.xDeathMatch -nohomedir ini=${servercfg} log=${gamelog}" } diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 0a62996d1..fff7c8cb4 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -27,7 +27,6 @@ defaultmap="DM-Deck16][" ip="0.0.0.0" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="server ${defaultmap}.unr ini=${servercfgfullpath}" } diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 564473568..07ec5b7d9 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -22,11 +22,7 @@ version="170110" #### Server Settings #### -## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -# Please use Enemy Territory config file. - ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfg}" } diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index cd765b480..c9140e9d0 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -27,7 +27,6 @@ version="170110" # No settings available for Just Cause 2 ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -# Edit with care fn_parms(){ parms="" } diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 82a4cc147..21c76309c 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -29,6 +29,7 @@ pushbullettoken="accesstoken" # Start Variables updateonstart="off" + fn_parms(){ parms="" } From 7fa45081d2c2002689106b5e39892c4a571342ed Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 19:12:17 +0100 Subject: [PATCH 116/325] travis Cedar fix --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f91811da3..d385c27fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: bash -sudo: false +sudo: required env: - DISTRO=ubuntu-trusty From ff583d565c8078e179ba2879366520f37cf65d57 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 20:05:29 +0100 Subject: [PATCH 117/325] attempt to fix thanks @cedar :D --- lgsm/functions/mods_core.sh | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index d39fc2204..9482dd12e 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -188,26 +188,22 @@ fn_postinstall_tasks(){ # Prevent addons folder from being removed by clearing them in: ${modsdatadir}/${modcommand}-files.list fn_check_files_list # Output to the user - fn_print_information_nl "Rearranging ${modcommand}-files.list" + fn_print_dots "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" - smremovefromlist="cfg;addons;" - # Loop through every single line to find any of the files to remove from the list + removefromlist="cfg;addons;" + # Loop through files to remove and remove them from file list # that way these files won't get removed upon update or uninstall - fileslistline=1 - while [ $fileslistline -le $modsfilelistsize ]; do - testline="$(sed "${fileslistline}q;d" "${modsdatadir}/${modcommand}-files.list")" - # How many elements to remove from list - smremoveamount="$(echo "${smremovefromlist}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modkeepfiles" using the ";" separator - for ((filesindex=1; filesindex < ${smremoveamount}; filesindex++)); do - # Put current file into test variable - smremovetestvar="$( echo "${smremovefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # If it matches - if [ "${testline}" == "${smremovetestvar}" ]; then - # Then delete the line! - sed -i "${testline}d" "${modsdatadir}/${modcommand}-files.list" - fi - done - let fileslistline=fileslistline+1 + # How many elements to remove from list + removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "removefromlist" using the ";" separator + for ((filesindex=1; filesindex < ${removefromlistamount}; filesindex++)); do + # Put current file into test variable + removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" + # If it matches + if [ "${testline}" == "${removefilevar}" ]; then + # Then delete matching line(s)! + sed -i "/^${testline}$/d" "${modsdatadir}/${modcommand}-files.list" + fi done + fn_print_ok "Rearranging ${modcommand}-files.list" } From 98f30f384362ecc102befe1b3f3e45f6988134f4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 20:09:48 +0100 Subject: [PATCH 118/325] clearing junk --- lgsm/functions/mods_core.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9482dd12e..5bde66b15 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -191,19 +191,16 @@ fn_postinstall_tasks(){ fn_print_dots "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" removefromlist="cfg;addons;" - # Loop through files to remove and remove them from file list - # that way these files won't get removed upon update or uninstall + # Loop through files to remove from file list, + # that way these files won't get removed upon uninstall # How many elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" # Test all subvalue of "removefromlist" using the ";" separator for ((filesindex=1; filesindex < ${removefromlistamount}; filesindex++)); do # Put current file into test variable removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # If it matches - if [ "${testline}" == "${removefilevar}" ]; then - # Then delete matching line(s)! - sed -i "/^${testline}$/d" "${modsdatadir}/${modcommand}-files.list" - fi + # Then delete matching line(s)! + sed -i "/^${testline}$/d" "${modsdatadir}/${modcommand}-files.list" done fn_print_ok "Rearranging ${modcommand}-files.list" } From 02fc9bc11564d195ab1c627ec5fc0c941d88ba48 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 20:17:00 +0100 Subject: [PATCH 119/325] proper var & comments --- lgsm/functions/mods_core.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 5bde66b15..de4a7fde9 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -184,12 +184,13 @@ fn_check_files_list(){ } fn_postinstall_tasks(){ - # Sourcemod, but any other game as well should never delete "cfg" or "addons" folder # Prevent addons folder from being removed by clearing them in: ${modsdatadir}/${modcommand}-files.list + # Check file validity fn_check_files_list # Output to the user fn_print_dots "Rearranging ${modcommand}-files.list" fn_script_log_info "Rearranging ${modcommand}-files.list" + # What lines/files to remove from file list removefromlist="cfg;addons;" # Loop through files to remove from file list, # that way these files won't get removed upon uninstall @@ -200,7 +201,7 @@ fn_postinstall_tasks(){ # Put current file into test variable removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" # Then delete matching line(s)! - sed -i "/^${testline}$/d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" done fn_print_ok "Rearranging ${modcommand}-files.list" } From d47652db6335f22a6181ac0081d85b500d4184a9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 21:53:44 +0100 Subject: [PATCH 120/325] Changes & echoing for diagnose purposes --- lgsm/functions/mods_core.sh | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index de4a7fde9..b5e441b5e 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: List and installs available mods along with mods_list.sh. +# Description: Core functions for mods list/install/update/remove local commandname="MODS" local commandaction="Core functions for mods" @@ -12,6 +12,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" ## Useful variables # Files and Directories modstmpdir="${tmpdir}/mods" +extractdir="${modstmpdir}/extracted" modsdatadir="${lgsmdir}/data/mods" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" @@ -65,7 +66,6 @@ fn_mod_dl(){ fn_mod_extract(){ # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" filename="${modfilename}" - extractdir="${modstmpdir}/extracted" if [ ! -d "${extractdir}" ]; then mkdir -p "${extractdir}" fi @@ -89,15 +89,18 @@ fn_remove_cfg_files(){ if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then # Upon mods updates, config files should not be overwritten # We will just remove these files before copying the mod to the destination + # Let's count how many files there are to remove removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modgames" using the ";" separator for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do - # Put current game name into modtest variable - removefiletest="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" - # If it matches - if [ -f "${extractdir}/${removefiletest}" ]||[ -d "${extractdir}/${removefiletest}" ]; then + # Put current file we're looking for into a variable + filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + echo "Testing ${filetoremove}" + # If it matches an existing file that have been extracted + if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then + echo "Removing ${extractdir}/${filetoremove}" # Then delete the file! - rm -R "${extractdir}/${removefiletest}" + rm -R "${extractdir}/${filetoremove}" # Write this file path in a tmp file, to rebuild a full file list if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" From 8d6fe73cc4058d0716deb452dee7fc9cd91549c3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 22:00:45 +0100 Subject: [PATCH 121/325] Attempt for fix fn_remove_cfg_files --- lgsm/functions/mods_core.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index b5e441b5e..294193237 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -95,17 +95,15 @@ fn_remove_cfg_files(){ for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do # Put current file we're looking for into a variable filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" - echo "Testing ${filetoremove}" # If it matches an existing file that have been extracted if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then - echo "Removing ${extractdir}/${filetoremove}" # Then delete the file! rm -R "${extractdir}/${filetoremove}" # Write this file path in a tmp file, to rebuild a full file list if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" fi - echo "${removefiletest}" > "${modsdatadir}/.removedfiles.tmp" + echo "${filetoremove}" > "${modsdatadir}/.removedfiles.tmp" fi done fi From bcd64144e44c46e7e65f4dd85786bfa3521ace94 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 22:18:12 +0100 Subject: [PATCH 122/325] trying to improve output --- lgsm/functions/command_mods_update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 390897d41..ea2355581 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -60,7 +60,8 @@ fn_mods_update_loop(){ echo " * 3) Re-install the mod with ./${selfname} mods-install" let installedmodsline=installedmodsline+1 else - fn_print_dots_nl "Updating ${modprettyname}" + echo "" + fn_print_dots "Updating ${modprettyname}" fn_script_log "Updating ${modprettyname}." # Check and create required directories fn_mods_dir From 97dcc1bca87ce8e2c1b8fa0eef4a6bbdbd981216 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 22:21:29 +0100 Subject: [PATCH 123/325] output --- lgsm/functions/command_mods_update.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index ea2355581..8a7869431 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -52,12 +52,11 @@ fn_mods_update_loop(){ fn_mod_get_info_from_command # Don't update the mod if it's policy is to "NOUPDATE" if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_warning_nl "${modprettyname} update has been disabled by LGSM." - echo " * Usual reason is to prevent erasing custom files." + fn_print_info_nl "${modprettyname} won't be updated to prevent erasing custom files." echo " * If you still wish to update this mod:" - echo " * 1) Backup your critical mod files" - echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" - echo " * 3) Re-install the mod with ./${selfname} mods-install" + echo " 1) Backup your critical mod files" + echo " 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" + echo " 3) Re-install the mod with ./${selfname} mods-install" let installedmodsline=installedmodsline+1 else echo "" From 9ceca05b8ae3840cf226ca7477208fe1c519ffab Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sun, 15 Jan 2017 23:02:50 +0100 Subject: [PATCH 124/325] way more output --- lgsm/functions/mods_core.sh | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 294193237..aa0a2c61c 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -76,7 +76,7 @@ fn_mod_extract(){ fn_mod_lowercase(){ # Converting files to lowercase if [ "${modlowercase}" == "LowercaseOn" ]; then - fn_print_dots "Converting ${modprettyname} files to lowercase" + fn_print_dots_nl "Converting ${modprettyname} files to lowercase" fn_script_log "Converting ${modprettyname} files to lowercase" find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; fn_print_ok "Converting ${modprettyname} files to lowercase" @@ -90,6 +90,8 @@ fn_remove_cfg_files(){ # Upon mods updates, config files should not be overwritten # We will just remove these files before copying the mod to the destination # Let's count how many files there are to remove + fn_print_dots_nl "Allow for preserving ${modprettyname} config files" + sleep 0.5 removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modgames" using the ";" separator for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do @@ -103,9 +105,10 @@ fn_remove_cfg_files(){ if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" fi - echo "${filetoremove}" > "${modsdatadir}/.removedfiles.tmp" + echo "${filetoremove}" >> "${modsdatadir}/.removedfiles.tmp" fi done + fn_print_ok "Allow for preserving ${modprettyname} config files" fi } @@ -115,6 +118,8 @@ fn_mod_fileslist(){ mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" fi + fn_print_dots_nl "Building ${modcommand}-files.list" + fn_script_log "Building ${modcommand}-files.list" # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" @@ -122,10 +127,12 @@ fn_mod_fileslist(){ if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then cat "${modsdatadir}/.removedfiles.tmp" >> ${modsdatadir}/${modcommand}-files.list fi + fn_print_ok "Building ${modcommand}-files.list" } fn_mod_copy_destination(){ # Destination directory: ${modinstalldir} + fn_print_dots_nl "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}" cp -Rf "${extractdir}/." "${modinstalldir}/" } @@ -134,12 +141,12 @@ fn_mod_copy_destination(){ fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "" fn_print_warning_nl "${modprettyname} has already been installed." - echo " * Config files might be overwritten." + echo " * Config files, if any, might be overwritten." echo " * Press ctrl + c to abort." sleep 4 fi + fn_script_log "${modprettyname} is already installed, overwriting any file." fi } @@ -157,7 +164,7 @@ fn_mod_add_list(){ fi # Input mod name to lockfile if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "${modcommand}" >> "${modslockfilefullpath}" + echo "${modcommand}" > "${modslockfilefullpath}" fn_script_log "${modcommand} added to ${modslockfile}" fi } @@ -190,6 +197,7 @@ fn_postinstall_tasks(){ fn_check_files_list # Output to the user fn_print_dots "Rearranging ${modcommand}-files.list" + sleep 1 fn_script_log_info "Rearranging ${modcommand}-files.list" # What lines/files to remove from file list removefromlist="cfg;addons;" From 988d79e88a29748e852d27ddbf37e3358b404b76 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 15 Jan 2017 22:36:10 +0000 Subject: [PATCH 125/325] Prevents Legacy arkserver from failing issue was caused by a Typo in to word Survival --- lgsm/functions/core_functions.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 3a233174a..f4b6c47f7 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -6,7 +6,9 @@ # This function is called first before any other function. Without this file other functions will not load. # Fixes for legacy code -if [ "${gamename}" == "Teamspeak 3" ]; then +if [ "${gamename}" == "ARK: Survivial Evolved" ]; then + gamename="ARK: Survival Evolved" +elif [ "${gamename}" == "Teamspeak 3" ]; then gamename="TeamSpeak 3" elif [ "${gamename}" == "Counter Strike: Global Offensive" ]; then gamename="Counter-Strike: Global Offensive" From 9cd758ea33321082af57c40b936c2b01f53aca66 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 01:26:45 +0100 Subject: [PATCH 126/325] Don't overwrite, append & less space try --- lgsm/functions/mods_core.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index aa0a2c61c..09d4e2163 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -25,7 +25,7 @@ fn_mods_dir(){ fn_print_dots "Creating mods directory" sleep 1 mkdir -p "${modinstalldir}" - fn_print_ok_nl "Created mods directory" + fn_print_ok "Created mods directory" fi } @@ -76,7 +76,7 @@ fn_mod_extract(){ fn_mod_lowercase(){ # Converting files to lowercase if [ "${modlowercase}" == "LowercaseOn" ]; then - fn_print_dots_nl "Converting ${modprettyname} files to lowercase" + fn_print_dots "Converting ${modprettyname} files to lowercase" fn_script_log "Converting ${modprettyname} files to lowercase" find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; fn_print_ok "Converting ${modprettyname} files to lowercase" @@ -90,7 +90,7 @@ fn_remove_cfg_files(){ # Upon mods updates, config files should not be overwritten # We will just remove these files before copying the mod to the destination # Let's count how many files there are to remove - fn_print_dots_nl "Allow for preserving ${modprettyname} config files" + fn_print_dots "Allow for preserving ${modprettyname} config files" sleep 0.5 removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modgames" using the ";" separator @@ -118,7 +118,7 @@ fn_mod_fileslist(){ mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" fi - fn_print_dots_nl "Building ${modcommand}-files.list" + fn_print_dots "Building ${modcommand}-files.list" fn_script_log "Building ${modcommand}-files.list" # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list @@ -132,9 +132,11 @@ fn_mod_fileslist(){ fn_mod_copy_destination(){ # Destination directory: ${modinstalldir} - fn_print_dots_nl "Copying ${modprettyname} to ${modinstalldir}" + fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}" cp -Rf "${extractdir}/." "${modinstalldir}/" + sleep 0.5 + fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" } # Check if the mod is already installed and warn the user @@ -164,7 +166,7 @@ fn_mod_add_list(){ fi # Input mod name to lockfile if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - echo "${modcommand}" > "${modslockfilefullpath}" + echo "${modcommand}" >> "${modslockfilefullpath}" fn_script_log "${modcommand} added to ${modslockfile}" fi } From 60effd5e0f689c4d0a257b65f74cdbca70bbc461 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 02:50:28 +0100 Subject: [PATCH 127/325] installed > updated --- lgsm/functions/command_mods_update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 8a7869431..ae8222761 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -60,7 +60,7 @@ fn_mods_update_loop(){ let installedmodsline=installedmodsline+1 else echo "" - fn_print_dots "Updating ${modprettyname}" + fn_print_dots_nl "Updating ${modprettyname}" fn_script_log "Updating ${modprettyname}." # Check and create required directories fn_mods_dir @@ -85,8 +85,8 @@ fn_mods_update_loop(){ fn_postinstall_tasks # Cleaning fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} installed." - fn_script_log "${modprettyname} installed." + fn_print_ok_nl "${modprettyname} updated" + fn_script_log "${modprettyname} updated." let installedmodsline=installedmodsline+1 fi else From 424cc93c284192fdbc176f36a14f036d67b266e5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 02:55:56 +0100 Subject: [PATCH 128/325] better output --- lgsm/functions/command_mods_update.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index ae8222761..6c468aa11 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -52,11 +52,8 @@ fn_mods_update_loop(){ fn_mod_get_info_from_command # Don't update the mod if it's policy is to "NOUPDATE" if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_info_nl "${modprettyname} won't be updated to prevent erasing custom files." - echo " * If you still wish to update this mod:" - echo " 1) Backup your critical mod files" - echo " 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)" - echo " 3) Re-install the mod with ./${selfname} mods-install" + fn_print_info_nl "${modprettyname} won't be updated to preserve custom files" + fn_script_log "${modprettyname} won't be updated to preserve custom files." let installedmodsline=installedmodsline+1 else echo "" @@ -85,7 +82,7 @@ fn_mods_update_loop(){ fn_postinstall_tasks # Cleaning fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} updated" + fn_print_ok "${modprettyname} updated" fn_script_log "${modprettyname} updated." let installedmodsline=installedmodsline+1 fi From b3b0a0cb55fa50b0b43818af8388f8feed08152c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 03:28:00 +0100 Subject: [PATCH 129/325] Moved functions to core --- lgsm/functions/mods_list.sh | 197 ------------------------------------ 1 file changed, 197 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 24a81f262..d9288a11f 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -77,201 +77,4 @@ fn_mods_scrape_urls(){ sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" } -# Sets some gsm requirements -fn_gsm_requirements(){ - # If tmpdir variable doesn't exist, LGSM is too old - if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LGSM version is too old." - echo " * Please do a full update, including ${selfname} script." - core_exit.sh - fi -} - -# Define all variables from a mod at once when index is set to a separator -fn_mod_info(){ -# If for some reason no index is set, none of this can work -if [ -z "$index" ]; then - fn_print_error "index variable not set. Please report an issue to LGSM Team." - echo "* https://github.com/GameServerManagers/LinuxGSM/issues" - core_exit.sh -fi - modcommand="${mods_global_array[index+1]}" - modprettyname="${mods_global_array[index+2]}" - modurl="${mods_global_array[index+3]}" - modfilename="${mods_global_array[index+4]}" - modsubdirs="${mods_global_array[index+5]}" - modlowercase="${mods_global_array[index+6]}" - modinstalldir="${mods_global_array[index+7]}" - modkeepfiles="${mods_global_array[index+8]}" - modengines="${mods_global_array[index+9]}" - modgames="${mods_global_array[index+10]}" - modexcludegames="${mods_global_array[index+11]}" - modsite="${mods_global_array[index+12]}" - moddescription="${mods_global_array[index+13]}" -} - - -# Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable -fn_compatible_mod_games(){ - # Reset test value - modcompatiblegame="0" - # If value is set to GAMES (ignore) - if [ "${modgames}" != "GAMES" ]; then - # How many games we need to test - gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modgames" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${gamesamount}; gamevarindex++)); do - # Put current game name into modtest variable - gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If game name matches - if [ "${gamemodtest}" == "${gamename}" ]; then - # Mod is compatible ! - modcompatiblegame="1" - fi - done - fi -} - -# Find out if an engine is compatible with a mod from a modengines (list of engines supported by a mod) variable -fn_compatible_mod_engines(){ - # Reset test value - modcompatibleengine="0" - # If value is set to ENGINES (ignore) - if [ "${modengines}" != "ENGINES" ]; then - # How many engines we need to test - enginesamount="$(echo "${modengines}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modengines" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${enginesamount}; gamevarindex++)); do - # Put current engine name into modtest variable - enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If engine name matches - if [ "${enginemodtest}" == "${engine}" ]; then - # Mod is compatible ! - modcompatibleengine="1" - fi - done - fi -} - -# Find out if a game is not compatible with a mod from a modnotgames (list of games not supported by a mod) variable -fn_not_compatible_mod_games(){ - # Reset test value - modeincompatiblegame="0" - # If value is set to NOTGAMES (ignore) - if [ "${modexcludegames}" != "NOTGAMES" ]; then - # How many engines we need to test - excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modexcludegames" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${excludegamesamount}; gamevarindex++)); do - # Put current engine name into modtest variable - excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If engine name matches - if [ "${excludegamemodtest}" == "${gamename}" ]; then - # Mod is compatible ! - modeincompatiblegame="1" - fi - done - fi -} - -# Sums up if a mod is compatible or not with modcompatibility=0/1 -fn_mod_compatible_test(){ - # Test game and engine compatibility - fn_compatible_mod_games - fn_compatible_mod_engines - fn_not_compatible_mod_games - if [ "${modeincompatiblegame}" == "1" ]; then - modcompatibility="0" - elif [ "${modcompatibleengine}" == "1" ]||[ "${modcompatiblegame}" == "1" ]; then - modcompatibility="1" - else - modcompatibility="0" - fi -} - -# Checks if a mod is compatibile for installation -# Provides available mods for installation -# Provides commands for mods installation -fn_mods_available(){ - # First, reset variables - compatiblemodslist=() - availablemodscommands=() - modprettynamemaxlength="0" - modsitemaxlength="0" - moddescriptionmaxlength="0" - modcommandmaxlength="0" - # Find compatible games - # Find separators through the global array - for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do - # If current value is a separator; then - if [ "${mods_global_array[index]}" == "${modseparator}" ]; then - # Set mod variables - fn_mod_info - # Test if game is compatible - fn_mod_compatible_test - # If game is compatible - if [ "${modcompatibility}" == "1" ]; then - # Put it into the list to display to the user - compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) - # Keep available commands in an array - availablemodscommands+=( "${modcommand}" ) - fi - fi - done -} - -# Output available mods in a nice way to the user -fn_mods_show_available(){ - # Set and reset vars - compatiblemodslistindex=0 - spaces=" " - # As long as we're within index values - while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do - # Set values for convenience - displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" - displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" - displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" - displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" - # Output mods to the user - echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * \e[36m${displayedmodcommand}\e[0m" - # Increment index from the amount of values we just displayed - let "compatiblemodslistindex+=4" - done - # If no mods are found - if [ -z "${compatiblemodslist}" ]; then - fn_print_fail "No mods are currently available for ${gamename}." - core_exit.sh - fi -} - -# Get details of a mod any (relevant and unique, such as full mod name or install command) value -fn_mod_get_info_from_command(){ - # Variable to know when job is done - modinfocommand="0" - # Find entry in global array - for ((index=0; index <= ${#mods_global_array[@]}; index++)); do - # When entry is found - if [ "${mods_global_array[index]}" == "${currentmod}" ]; then - # Go back to the previous "MOD" separator - for ((index=index; index <= ${#mods_global_array[@]}; index--)); do - # When "MOD" is found - if [ "${mods_global_array[index]}" == "MOD" ]; then - # Get info - fn_mod_info - modinfocommand="1" - break - fi - done - fi - # Exit the loop if job is done - if [ "${modinfocommand}" == "1" ]; then - break - fi - done -} - -fn_gsm_requirements fn_mods_scrape_urls -fn_mods_info -fn_mods_available From 609b346b9a7c0078ee20cd5a3956a1b09246cfc3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 03:28:10 +0100 Subject: [PATCH 130/325] moved mods_list.sh functions to core --- lgsm/functions/mods_core.sh | 200 ++++++++++++++++++++++++++++++++++++ 1 file changed, 200 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 09d4e2163..54c394cf5 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -17,6 +17,16 @@ modsdatadir="${lgsmdir}/data/mods" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" +# Sets some gsm requirements +fn_gsm_requirements(){ + # If tmpdir variable doesn't exist, LGSM is too old + if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then + fn_print_fail "Your LGSM version is too old." + echo " * Please do a full update, including ${selfname} script." + core_exit.sh + fi +} + # Create mods directory if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. fn_mods_dir(){ @@ -216,3 +226,193 @@ fn_postinstall_tasks(){ done fn_print_ok "Rearranging ${modcommand}-files.list" } + +## mods_list.sh arrays + +# Define all variables from a mod at once when index is set to a separator +fn_mod_info(){ +# If for some reason no index is set, none of this can work +if [ -z "$index" ]; then + fn_print_error "index variable not set. Please report an issue to LGSM Team." + echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + core_exit.sh +fi + modcommand="${mods_global_array[index+1]}" + modprettyname="${mods_global_array[index+2]}" + modurl="${mods_global_array[index+3]}" + modfilename="${mods_global_array[index+4]}" + modsubdirs="${mods_global_array[index+5]}" + modlowercase="${mods_global_array[index+6]}" + modinstalldir="${mods_global_array[index+7]}" + modkeepfiles="${mods_global_array[index+8]}" + modengines="${mods_global_array[index+9]}" + modgames="${mods_global_array[index+10]}" + modexcludegames="${mods_global_array[index+11]}" + modsite="${mods_global_array[index+12]}" + moddescription="${mods_global_array[index+13]}" +} + + +# Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable +fn_compatible_mod_games(){ + # Reset test value + modcompatiblegame="0" + # If value is set to GAMES (ignore) + if [ "${modgames}" != "GAMES" ]; then + # How many games we need to test + gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modgames" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${gamesamount}; gamevarindex++)); do + # Put current game name into modtest variable + gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If game name matches + if [ "${gamemodtest}" == "${gamename}" ]; then + # Mod is compatible ! + modcompatiblegame="1" + fi + done + fi +} + +# Find out if an engine is compatible with a mod from a modengines (list of engines supported by a mod) variable +fn_compatible_mod_engines(){ + # Reset test value + modcompatibleengine="0" + # If value is set to ENGINES (ignore) + if [ "${modengines}" != "ENGINES" ]; then + # How many engines we need to test + enginesamount="$(echo "${modengines}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modengines" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${enginesamount}; gamevarindex++)); do + # Put current engine name into modtest variable + enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If engine name matches + if [ "${enginemodtest}" == "${engine}" ]; then + # Mod is compatible ! + modcompatibleengine="1" + fi + done + fi +} + +# Find out if a game is not compatible with a mod from a modnotgames (list of games not supported by a mod) variable +fn_not_compatible_mod_games(){ + # Reset test value + modeincompatiblegame="0" + # If value is set to NOTGAMES (ignore) + if [ "${modexcludegames}" != "NOTGAMES" ]; then + # How many engines we need to test + excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" + # Test all subvalue of "modexcludegames" using the ";" separator + for ((gamevarindex=1; gamevarindex < ${excludegamesamount}; gamevarindex++)); do + # Put current engine name into modtest variable + excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" + # If engine name matches + if [ "${excludegamemodtest}" == "${gamename}" ]; then + # Mod is compatible ! + modeincompatiblegame="1" + fi + done + fi +} + +# Sums up if a mod is compatible or not with modcompatibility=0/1 +fn_mod_compatible_test(){ + # Test game and engine compatibility + fn_compatible_mod_games + fn_compatible_mod_engines + fn_not_compatible_mod_games + if [ "${modeincompatiblegame}" == "1" ]; then + modcompatibility="0" + elif [ "${modcompatibleengine}" == "1" ]||[ "${modcompatiblegame}" == "1" ]; then + modcompatibility="1" + else + modcompatibility="0" + fi +} + +# Checks if a mod is compatibile for installation +# Provides available mods for installation +# Provides commands for mods installation +fn_mods_available(){ + # First, reset variables + compatiblemodslist=() + availablemodscommands=() + modprettynamemaxlength="0" + modsitemaxlength="0" + moddescriptionmaxlength="0" + modcommandmaxlength="0" + # Find compatible games + # Find separators through the global array + for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do + # If current value is a separator; then + if [ "${mods_global_array[index]}" == "${modseparator}" ]; then + # Set mod variables + fn_mod_info + # Test if game is compatible + fn_mod_compatible_test + # If game is compatible + if [ "${modcompatibility}" == "1" ]; then + # Put it into an array to prepare user output + compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) + # Keep available commands in an array to make life easier + availablemodscommands+=( "${modcommand}" ) + fi + fi + done +} + +# Output available mods in a nice way to the user +fn_mods_show_available(){ + # Set and reset vars + compatiblemodslistindex=0 + spaces=" " + # As long as we're within index values + while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do + # Set values for convenience + displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" + displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" + displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" + displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" + # Output mods to the user + echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * \e[36m${displayedmodcommand}\e[0m" + # Increment index from the amount of values we just displayed + let "compatiblemodslistindex+=4" + done + # If no mods are found + if [ -z "${compatiblemodslist}" ]; then + fn_print_fail "No mods are currently available for ${gamename}." + core_exit.sh + fi +} + +# Get details of a mod any (relevant and unique, such as full mod name or install command) value +fn_mod_get_info_from_command(){ + # Variable to know when job is done + modinfocommand="0" + # Find entry in global array + for ((index=0; index <= ${#mods_global_array[@]}; index++)); do + # When entry is found + if [ "${mods_global_array[index]}" == "${currentmod}" ]; then + # Go back to the previous "MOD" separator + for ((index=index; index <= ${#mods_global_array[@]}; index--)); do + # When "MOD" is found + if [ "${mods_global_array[index]}" == "MOD" ]; then + # Get info + fn_mod_info + modinfocommand="1" + break + fi + done + fi + # Exit the loop if job is done + if [ "${modinfocommand}" == "1" ]; then + break + fi + done +} + +fn_gsm_requirements +fn_mods_info +fn_mods_available From 7cadebbe5b62e7eb357f3e196e2a54c16f28befd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 03:53:12 +0100 Subject: [PATCH 131/325] move to core --- lgsm/functions/mods_list.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index d9288a11f..e99ff2214 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -76,5 +76,3 @@ fn_mods_scrape_urls(){ sourcemodfasterurl="http://cdn.probablyaserver.com/sourcemod/" sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" } - -fn_mods_scrape_urls From 3bfde779a1a863884362e23ce36e17b3691763f6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 03:54:24 +0100 Subject: [PATCH 132/325] moves & fixes running functions --- lgsm/functions/mods_core.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 54c394cf5..dcb50a400 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -16,6 +16,8 @@ extractdir="${modstmpdir}/extracted" modsdatadir="${lgsmdir}/data/mods" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" +# Database initialization +mods_list.sh # Sets some gsm requirements fn_gsm_requirements(){ @@ -415,4 +417,5 @@ fn_mod_get_info_from_command(){ fn_gsm_requirements fn_mods_info +fn_mods_scrape_urls fn_mods_available From 7c29d0c38334db02992dd4322c74e78f8a6a913e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 04:00:33 +0100 Subject: [PATCH 133/325] scrape_urls goes first, right --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index dcb50a400..efdcec31f 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -416,6 +416,6 @@ fn_mod_get_info_from_command(){ } fn_gsm_requirements -fn_mods_info fn_mods_scrape_urls +fn_mods_info fn_mods_available From cdd78a9c0753d5848ffdc4e8f5131963dade7494 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 04:12:25 +0100 Subject: [PATCH 134/325] Mods update conclusion --- lgsm/functions/command_mods_update.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 6c468aa11..19eb449cf 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -92,6 +92,9 @@ fn_mods_update_loop(){ core_exit.sh fi done + echo "" + fn_print_ok_nl "Mods update complete" + fn_script_log "Mods update complete." } fn_mods_update_init From a3501e6544708a206e0fcb45fd798bf09f05e79d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 05:05:41 +0100 Subject: [PATCH 135/325] Remove metamod dir from sourcemod file list --- lgsm/functions/mods_core.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index efdcec31f..d55b84631 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -226,6 +226,13 @@ fn_postinstall_tasks(){ # Then delete matching line(s)! sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" done + # Sourcemod fix + # Remove metamod from sourcemod fileslist + if [ "${modcommand}" == "sourcemod" ]; then + # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.list + sed -i "/^addons/metamod$/d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/^addons/metamod/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" + fi fn_print_ok "Rearranging ${modcommand}-files.list" } From bee22481997cf49e579364bde5be7d8aa31576c9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 05:26:10 +0100 Subject: [PATCH 136/325] Escape slashes in sed --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index d55b84631..78de67a96 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -230,8 +230,8 @@ fn_postinstall_tasks(){ # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.list - sed -i "/^addons/metamod$/d" "${modsdatadir}/${modcommand}-files.list" - sed -i "/^addons/metamod/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.list" + sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" fi fn_print_ok "Rearranging ${modcommand}-files.list" } From 57b5374078d5fec3b400000097d2ab84e758c735 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 19:23:45 +0100 Subject: [PATCH 137/325] fn_mods_remove_init --- lgsm/functions/command_mods_remove.sh | 54 +++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index c2bb35f48..6e7abc531 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -8,3 +8,57 @@ local commandname="MODS" local commandaction="Mod Remove" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh +mods_core.sh +mods_list.sh + +fn_mods_remove_init(){ + fn_script_log "Entering mods & addons removal" + echo "=================================" + echo "${gamename} mods & addons update" + echo "" + # Installed mod dir is "${modslockfilefullpath}" + # How many mods are installed + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + # If no mods to be updated + if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then + fn_print_information_nl "No mods or addons to remove" + echo " * Did you install any mod using LGSM?" + fn_scrip_log_info "No mods or addons to remove." + core_exit.sh + fi + # Build installed mods list and display to the user. + installedmodsline=1 + availablemodsremove=() + while [ $installedmodsline -le $installedmodscount ]; do + availablemodsremove+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath})" ) + echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" + let installedmodsline=installedmodsline+1 + done + sleep 2 + + # Keep prompting as long as the user input doesn't correspond to an available mod + while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do + echo -en "Enter a \e[36mmod\e[0m to ${red}remove${default} (or exit to abort): " + read -r usermodselect + # Exit if user says exit or abort + if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then + fn_script_log "User aborted." + echo "Aborted." + core_exit.sh + # Supplementary output upon invalid user input + elif [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; then + fn_print_error2_nl "${usermodselect} is not a valid mod." + echo " * Enter a valid mod or input exit to abort." + fi + done + # Gives a pretty name to the user and get all mod info + currentmod="${usermodselect}" + fn_mod_get_info_from_command + fn_print_dots_nl "Removing ${modprettyname}" + sleep 1 + fn_script_log "Removing ${modprettyname}." +} + +fn_mods_remove_init From 90a795adaa31fc9782520eeeba3182ba10cb0d54 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 19:28:43 +0100 Subject: [PATCH 138/325] one fix --- lgsm/functions/command_mods_remove.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 6e7abc531..f72e3b385 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -30,9 +30,9 @@ fn_mods_remove_init(){ fi # Build installed mods list and display to the user. installedmodsline=1 - availablemodsremove=() + availablemodsremove=() while [ $installedmodsline -le $installedmodscount ]; do - availablemodsremove+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath})" ) + availablemodsremove+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" ) echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" let installedmodsline=installedmodsline+1 done @@ -40,7 +40,7 @@ fn_mods_remove_init(){ # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a \e[36mmod\e[0m to ${red}remove${default} (or exit to abort): " + echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " read -r usermodselect # Exit if user says exit or abort if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then From b8fc80443ecd4374b8368426cef45eac4bc7c9c5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 19:49:18 +0100 Subject: [PATCH 139/325] tabs and line jump --- lgsm/functions/command_mods_remove.sh | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index f72e3b385..e86fefedf 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -36,22 +36,23 @@ fn_mods_remove_init(){ echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" let installedmodsline=installedmodsline+1 done - sleep 2 + echo "" + sleep 1 - # Keep prompting as long as the user input doesn't correspond to an available mod + # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " - read -r usermodselect - # Exit if user says exit or abort - if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then - fn_script_log "User aborted." - echo "Aborted." - core_exit.sh + echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " + read -r usermodselect + # Exit if user says exit or abort + if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then + fn_script_log "User aborted." + echo "Aborted." + core_exit.sh # Supplementary output upon invalid user input - elif [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; then + elif [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid mod." echo " * Enter a valid mod or input exit to abort." - fi + fi done # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" From efa647966cc19a6dc40fbdf8176a6944c1d4e3da Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:13:54 +0100 Subject: [PATCH 140/325] Trying mod remove process --- lgsm/functions/command_mods_remove.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index e86fefedf..f761210f5 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -62,4 +62,26 @@ fn_mods_remove_init(){ fn_script_log "Removing ${modprettyname}." } +fn_mod_remove_process(){ + # Check file list in order to make sure we're able to remove the mod + # Returns ${modsfilelistsize} + fn_check_files_list + modfileline="1" + while [ $modfileline -le $modsfilelistsize ]; do + # Current line defines current mod command + currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" + if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -f "${modinstalldir}/${currentfileremove}" ]; then + rm -rfv "${currentfileremove}" + fi + let installedmodsline=installedmodsline+1 + done + # Remove file list + rm -rfv "${modsdatadir}/${modcommand}-files.list" + # Remove from installed mods list + sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" + fn_print_ok_nl "Removed ${modprettyname}" + fn_script_log "Removed ${modprettyname}" +} + fn_mods_remove_init +fn_mod_remove_process From 0b3da9d2d3f2a81cf331a3ce6eb9cf18f0453ed5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:17:20 +0100 Subject: [PATCH 141/325] woops --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index f761210f5..eeb00f2ed 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -73,7 +73,7 @@ fn_mod_remove_process(){ if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -f "${modinstalldir}/${currentfileremove}" ]; then rm -rfv "${currentfileremove}" fi - let installedmodsline=installedmodsline+1 + let modfileline=modfileline+1 done # Remove file list rm -rfv "${modsdatadir}/${modcommand}-files.list" From ac58e6eddb9f889a7a8fc02665fdb05c43717fc8 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:26:14 +0100 Subject: [PATCH 142/325] =?UTF-8?q?woops=C2=B2=20should=20remove=20mods=20?= =?UTF-8?q?now?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lgsm/functions/command_mods_remove.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index eeb00f2ed..43a8ddae5 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -70,8 +70,8 @@ fn_mod_remove_process(){ while [ $modfileline -le $modsfilelistsize ]; do # Current line defines current mod command currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" - if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -f "${modinstalldir}/${currentfileremove}" ]; then - rm -rfv "${currentfileremove}" + if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then + rm -rfv "${modinstalldir}/${currentfileremove}" fi let modfileline=modfileline+1 done From 86186dc90ba195a9cb5d1d6c3b6a28a646ca614e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:38:12 +0100 Subject: [PATCH 143/325] Various improvements --- lgsm/functions/command_mods_remove.sh | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 43a8ddae5..dcaa572c3 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -57,27 +57,30 @@ fn_mods_remove_init(){ # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command - fn_print_dots_nl "Removing ${modprettyname}" - sleep 1 - fn_script_log "Removing ${modprettyname}." + # Returns ${modsfilelistsize} + fn_check_files_list + fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" + fn_print_dots_nl "Removing ${modsfilelistsize} files from ${modprettyname}" + sleep 4 } fn_mod_remove_process(){ # Check file list in order to make sure we're able to remove the mod - # Returns ${modsfilelistsize} - fn_check_files_list modfileline="1" while [ $modfileline -le $modsfilelistsize ]; do # Current line defines current mod command currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then - rm -rfv "${modinstalldir}/${currentfileremove}" + fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" + rm -rf "${modinstalldir}/${currentfileremove}" fi let modfileline=modfileline+1 done # Remove file list - rm -rfv "${modsdatadir}/${modcommand}-files.list" + fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.list" + rm -rf "${modsdatadir}/${modcommand}-files.list" # Remove from installed mods list + fn_script_log "Removing: ${modcommand} from "${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" fn_print_ok_nl "Removed ${modprettyname}" fn_script_log "Removed ${modprettyname}" From 5c4baae75c08e082dcbf4cb36cd705a56d1a35d0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:40:28 +0100 Subject: [PATCH 144/325] removed wrongly c/pasted double quote --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index dcaa572c3..74cbbac0d 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -80,7 +80,7 @@ fn_mod_remove_process(){ fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.list" rm -rf "${modsdatadir}/${modcommand}-files.list" # Remove from installed mods list - fn_script_log "Removing: ${modcommand} from "${modslockfilefullpath}" + fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" fn_print_ok_nl "Removed ${modprettyname}" fn_script_log "Removed ${modprettyname}" From ce9702227d3295c99e7ec1360fb2c93596c3c14d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:42:48 +0100 Subject: [PATCH 145/325] message --- lgsm/functions/command_mods_remove.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 74cbbac0d..4684a0d96 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -61,6 +61,8 @@ fn_mods_remove_init(){ fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" fn_print_dots_nl "Removing ${modsfilelistsize} files from ${modprettyname}" + echo " * Any mod's custom file will be deleted." + echo " * Press ctrl + c to abort." sleep 4 } From 86bb4381c9c445a2698ef674b4e72537e4716ede Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:44:31 +0100 Subject: [PATCH 146/325] fn_scrip_log_info don't exist --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 19eb449cf..7e2bc6612 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -25,7 +25,7 @@ fn_mods_update_init(){ if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then fn_print_information_nl "No mods or addons to be updated" echo " * Did you install any mod using LGSM?" - fn_scrip_log_info "No mods or addons to be updated" + fn_scrip_log "No mods or addons to be updated" core_exit.sh else fn_print_information_nl "${installedmodscount} mods or addons will be updated:" From 83b6d2d07f1d09339b3721bbd4554e68fe38ffbf Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:45:12 +0100 Subject: [PATCH 147/325] fn_scrip_log_info don't exist > fn_script_log_info --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 4684a0d96..3f2021c70 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -25,7 +25,7 @@ fn_mods_remove_init(){ if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then fn_print_information_nl "No mods or addons to remove" echo " * Did you install any mod using LGSM?" - fn_scrip_log_info "No mods or addons to remove." + fn_script_log_info "No mods or addons to remove." core_exit.sh fi # Build installed mods list and display to the user. From fc112a27aaf8568353100b32aec55f611a08371b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:45:36 +0100 Subject: [PATCH 148/325] scrip > script --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 7e2bc6612..62528446f 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -25,7 +25,7 @@ fn_mods_update_init(){ if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then fn_print_information_nl "No mods or addons to be updated" echo " * Did you install any mod using LGSM?" - fn_scrip_log "No mods or addons to be updated" + fn_script_log_info "No mods or addons to be updated" core_exit.sh else fn_print_information_nl "${installedmodscount} mods or addons will be updated:" From 63373a6ce07a5a59c4ecef73c2fa799e44f0d528 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:49:00 +0100 Subject: [PATCH 149/325] no end line dot --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 62528446f..c737d2a4a 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -87,7 +87,7 @@ fn_mods_update_loop(){ let installedmodsline=installedmodsline+1 fi else - fn_print_fail "No mod was selected." + fn_print_fail "No mod was selected" fn_script_log_fail "No mod was selected." core_exit.sh fi From a9a72af1aa58a4f7aab33aba82559c24f203ece4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:49:16 +0100 Subject: [PATCH 150/325] no end line dot --- lgsm/functions/command_mods_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 6a3e05b20..dc3c497cc 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -73,10 +73,10 @@ fn_mod_installation(){ fn_postinstall_tasks # Cleaning fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} installed." + fn_print_ok_nl "${modprettyname} installed" fn_script_log "${modprettyname} installed." else - fn_print_fail "No mod was selected." + fn_print_fail "No mod was selected" core_exit.sh fi } From 26bf25619b832ff3d9f57753b041b9ebaf717934 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:57:18 +0100 Subject: [PATCH 151/325] no nl for dots --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 3f2021c70..889c6dfb6 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -60,7 +60,7 @@ fn_mods_remove_init(){ # Returns ${modsfilelistsize} fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" - fn_print_dots_nl "Removing ${modsfilelistsize} files from ${modprettyname}" + fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" echo " * Any mod's custom file will be deleted." echo " * Press ctrl + c to abort." sleep 4 From 5295bd94fed851c7cb3f8e2366887c103a114f4d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 21:59:10 +0100 Subject: [PATCH 152/325] removal --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 889c6dfb6..642e472d3 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -16,7 +16,7 @@ mods_list.sh fn_mods_remove_init(){ fn_script_log "Entering mods & addons removal" echo "=================================" - echo "${gamename} mods & addons update" + echo "${gamename} mods & addons removal" echo "" # Installed mod dir is "${modslockfilefullpath}" # How many mods are installed From f042aee9f55919ed1b241f81c76dc39604f27248 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:00:49 +0100 Subject: [PATCH 153/325] no need for sleep --- lgsm/functions/command_mods_remove.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 642e472d3..4d67f6d81 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -37,8 +37,6 @@ fn_mods_remove_init(){ let installedmodsline=installedmodsline+1 done echo "" - sleep 1 - # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " From 142b02d17ec5f8f6caf216b8f9cbe361a2abbdae Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:04:53 +0100 Subject: [PATCH 154/325] dots & sleep --- lgsm/functions/mods_core.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 78de67a96..bc02b1442 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -149,13 +149,14 @@ fn_mod_copy_destination(){ cp -Rf "${extractdir}/." "${modinstalldir}/" sleep 0.5 fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" + sleep 0.5 } # Check if the mod is already installed and warn the user fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then - fn_print_warning_nl "${modprettyname} has already been installed." + fn_print_warning_nl "${modprettyname} has already been installed" echo " * Config files, if any, might be overwritten." echo " * Press ctrl + c to abort." sleep 4 From bae4085e194b170fd796f84d69a12c89c156b8ea Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:12:12 +0100 Subject: [PATCH 155/325] sleep times --- lgsm/functions/mods_core.sh | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index bc02b1442..c0765d25a 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -35,9 +35,10 @@ fn_mods_dir(){ if [ ! -d "${modinstalldir}" ]; then fn_script_log_info "Creating mods directory: ${modinstalldir}" fn_print_dots "Creating mods directory" - sleep 1 + sleep 0.5 mkdir -p "${modinstalldir}" fn_print_ok "Created mods directory" + sleep 0.5 fi } @@ -89,10 +90,11 @@ fn_mod_lowercase(){ # Converting files to lowercase if [ "${modlowercase}" == "LowercaseOn" ]; then fn_print_dots "Converting ${modprettyname} files to lowercase" + sleep 0.5 fn_script_log "Converting ${modprettyname} files to lowercase" find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; fn_print_ok "Converting ${modprettyname} files to lowercase" - sleep 1 + sleep 0.5 fi } @@ -121,6 +123,7 @@ fn_remove_cfg_files(){ fi done fn_print_ok "Allow for preserving ${modprettyname} config files" + sleep 0.5 fi } @@ -132,6 +135,7 @@ fn_mod_fileslist(){ fi fn_print_dots "Building ${modcommand}-files.list" fn_script_log "Building ${modcommand}-files.list" + sleep 0.5 # ${modsdatadir}/${modcommand}-files.list find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" @@ -140,14 +144,15 @@ fn_mod_fileslist(){ cat "${modsdatadir}/.removedfiles.tmp" >> ${modsdatadir}/${modcommand}-files.list fi fn_print_ok "Building ${modcommand}-files.list" + sleep 0.5 } fn_mod_copy_destination(){ # Destination directory: ${modinstalldir} fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}" - cp -Rf "${extractdir}/." "${modinstalldir}/" sleep 0.5 + cp -Rf "${extractdir}/." "${modinstalldir}/" fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" sleep 0.5 } @@ -157,9 +162,10 @@ fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then fn_print_warning_nl "${modprettyname} has already been installed" + sleep 1 echo " * Config files, if any, might be overwritten." echo " * Press ctrl + c to abort." - sleep 4 + sleep 3 fi fn_script_log "${modprettyname} is already installed, overwriting any file." fi @@ -212,7 +218,7 @@ fn_postinstall_tasks(){ fn_check_files_list # Output to the user fn_print_dots "Rearranging ${modcommand}-files.list" - sleep 1 + sleep 0.5 fn_script_log_info "Rearranging ${modcommand}-files.list" # What lines/files to remove from file list removefromlist="cfg;addons;" @@ -235,6 +241,7 @@ fn_postinstall_tasks(){ sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" fi fn_print_ok "Rearranging ${modcommand}-files.list" + sleep 0.5 } ## mods_list.sh arrays From b85a1bb18e566502c526e4d7423ce1762feee5ec Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:23:10 +0100 Subject: [PATCH 156/325] try replacing cat with sed --- lgsm/functions/mods_core.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index c0765d25a..796567109 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -160,7 +160,8 @@ fn_mod_copy_destination(){ # Check if the mod is already installed and warn the user fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then - if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + + if [ -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then fn_print_warning_nl "${modprettyname} has already been installed" sleep 1 echo " * Config files, if any, might be overwritten." From 99c29531f39d37a43893ccac7f7c8de390f71b8f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 22:30:01 +0100 Subject: [PATCH 157/325] replace with sed again --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 796567109..e3028f7db 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -185,7 +185,7 @@ fn_mod_add_list(){ fn_script_log "Created ${modslockfilefullpath}" fi # Input mod name to lockfile - if [ ! -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then + if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then echo "${modcommand}" >> "${modslockfilefullpath}" fn_script_log "${modcommand} added to ${modslockfile}" fi From 369416ff62153ea2dfdded479ff0bf2ff371e840 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Jan 2017 23:07:00 +0100 Subject: [PATCH 158/325] missing echo --- lgsm/functions/command_mods_remove.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 4d67f6d81..054e0cf20 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -59,6 +59,7 @@ fn_mods_remove_init(){ fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" + echo "" echo " * Any mod's custom file will be deleted." echo " * Press ctrl + c to abort." sleep 4 From 64a7610505b7c499ac3f11be8298c83320afff61 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 17 Jan 2017 20:33:49 +0000 Subject: [PATCH 159/325] renamed RenderWare to renderware --- lgsm/functions/check_deps.sh | 6 ++---- lgsm/functions/command_details.sh | 4 ++-- lgsm/functions/command_stop.sh | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 16df3860e..3ee12f3f5 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -6,8 +6,6 @@ local commandname="CHECK" - - fn_deps_detector(){ # Checks if dependency is missing if [ "${tmuxcheck}" == "1" ]; then @@ -159,7 +157,7 @@ if [ -n "$(command -v dpkg-query)" ]; then fi # All servers except ts3,mumble,multitheftauto and minecraft servers require libstdc++6 and lib32gcc1 - if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]&&[ "${engine}" != "RenderWare" ]; then + if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]&&[ "${engine}" != "renderware" ]; then if [ "${arch}" == "x86_64" ]; then array_deps_required+=( lib32gcc1 libstdc++6:i386 ) else @@ -242,7 +240,7 @@ elif [ -n "$(command -v yum)" ]; then fi # All servers except ts3,mumble,multitheftauto and minecraft servers require glibc.i686 and libstdc++.i686 - if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]&&[ "${engine}" != "RenderWare" ]; then + if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${engine}" != "lwjgl2" ]&&[ "${engine}" != "renderware" ]; then array_deps_required+=( glibc.i686 libstdc++.i686 ) fi diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index a4333f041..c227694c8 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -315,7 +315,7 @@ fn_details_ports(){ parmslocation="${red}UNKNOWN${default}" # engines/games that require editing in the config file - local ports_edit_array=( "avalanche" "dontstarve" "idtech2" "idtech3" "idtech3_ql" "lwjgl2" "projectzomboid" "quake" "refractor" "realvirtuality" "RenderWare" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" ) + local ports_edit_array=( "avalanche" "dontstarve" "idtech2" "idtech3" "idtech3_ql" "lwjgl2" "projectzomboid" "quake" "refractor" "realvirtuality" "renderware" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" ) for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then @@ -759,7 +759,7 @@ fn_display_details() { fn_details_script fn_details_backup # Some game servers do not have parms. - if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${engine}" != "avalanche" ]&&[ "${engine}" != "dontstarve" ]&&[ "${engine}" != "projectzomboid" ]&&[ "${engine}" != "RenderWare" ]; then + if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${engine}" != "avalanche" ]&&[ "${engine}" != "dontstarve" ]&&[ "${engine}" != "projectzomboid" ]&&[ "${engine}" != "renderware" ]; then fn_parms fn_details_commandlineparms fi diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index dda42c19a..62d73c3da 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -229,7 +229,7 @@ fn_stop_graceful_select(){ fn_stop_graceful_goldsource elif [ "${engine}" == "lwjgl2" ]; then fn_stop_graceful_minecraft - elif [ "${engine}" == "RenderWare" ]; then + elif [ "${engine}" == "renderware" ]; then fn_stop_graceful_mta else fn_stop_tmux From 99e5c34cdbb6f9b7cd14b5713d583ae553d36c68 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 17 Jan 2017 20:58:23 +0000 Subject: [PATCH 160/325] added mta to servefiles install --- lgsm/functions/command_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 0d5f95213..2da3992b7 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -18,7 +18,7 @@ check_deps.sh 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}" == "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 +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 From edb4d40f3844e9fbe21dd3f9a28d4ba8cefc13d8 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:11:13 +0100 Subject: [PATCH 161/325] polishing --- lgsm/functions/mods_core.sh | 69 ++++++++++++++++++++----------------- 1 file changed, 37 insertions(+), 32 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index e3028f7db..b466340b0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -29,9 +29,9 @@ fn_gsm_requirements(){ fi } -# Create mods directory if it doesn't exist +# Create mods files and directories if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. -fn_mods_dir(){ +fn_mods_files(){ if [ ! -d "${modinstalldir}" ]; then fn_script_log_info "Creating mods directory: ${modinstalldir}" fn_print_dots "Creating mods directory" @@ -40,6 +40,16 @@ fn_mods_dir(){ fn_print_ok "Created mods directory" sleep 0.5 fi + # Create lgsm/data/mods directory + if [ ! -d "${modsdatadir}" ]; then + mkdir -p "${modsdatadir}" + fn_script_log "Created ${modsdatadir}" + fi + # Create lgsm/data/${modslockfile} + if [ ! -f "${modslockfilefullpath}" ]; then + touch "${modslockfilefullpath}" + fn_script_log "Created ${modslockfilefullpath}" + fi } # Clear mod download directory so that there is only one file in it since we don't the file name and extention @@ -62,6 +72,7 @@ fn_mods_tmpdir(){ fi } +# Fetches mod URL fn_mod_dl(){ # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fileurl="${modurl}" @@ -76,6 +87,7 @@ fn_mod_dl(){ fi } +# Extract the mod fn_mod_extract(){ # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" filename="${modfilename}" @@ -86,8 +98,8 @@ fn_mod_extract(){ fn_dl_extract "${filedir}" "${filename}" "${extractdir}" } +# Convert mod files to lowercase if needed fn_mod_lowercase(){ - # Converting files to lowercase if [ "${modlowercase}" == "LowercaseOn" ]; then fn_print_dots "Converting ${modprettyname} files to lowercase" sleep 0.5 @@ -98,24 +110,24 @@ fn_mod_lowercase(){ fi } +# Don't overwrite specified files upon update (set by ${modkeepfiles}) +# For that matter, remove cfg files after extraction before copying them to destination fn_remove_cfg_files(){ - # Remove config file after extraction for updates set by ${modkeepfiles} if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - # Upon mods updates, config files should not be overwritten - # We will just remove these files before copying the mod to the destination - # Let's count how many files there are to remove - fn_print_dots "Allow for preserving ${modprettyname} config files" + fn_print_dots "Allow for not overwriting ${modprettyname} config files" + fn_script_log "Allow for not overwriting ${modprettyname} config files" sleep 0.5 + # Let's count how many files there are to remove removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modgames" using the ";" separator + # Test all subvalue of "modkeepfiles" using the ";" separator for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do # Put current file we're looking for into a variable filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" # If it matches an existing file that have been extracted if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then # Then delete the file! - rm -R "${extractdir}/${filetoremove}" - # Write this file path in a tmp file, to rebuild a full file list + rm -r "${extractdir}/${filetoremove}" + # Write this file path in a tmp file, to rebuild a full file list since it is rebuilt upon update if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then touch "${modsdatadir}/.removedfiles.tmp" fi @@ -127,12 +139,8 @@ fn_remove_cfg_files(){ fi } +# Create ${modcommand}-files.list containing the full extracted file/directory list fn_mod_fileslist(){ - # Create lgsm/data/mods directory - if [ ! -d "${modsdatadir}" ]; then - mkdir -p "${modsdatadir}" - fn_script_log "Created ${modsdatadir}" - fi fn_print_dots "Building ${modcommand}-files.list" fn_script_log "Building ${modcommand}-files.list" sleep 0.5 @@ -147,8 +155,8 @@ fn_mod_fileslist(){ sleep 0.5 } +# Copy the mod to the destination ${modinstalldir} fn_mod_copy_destination(){ - # Destination directory: ${modinstalldir} fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" fn_script_log "Copying ${modprettyname} to ${modinstalldir}" sleep 0.5 @@ -160,7 +168,6 @@ fn_mod_copy_destination(){ # Check if the mod is already installed and warn the user fn_mod_already_installed(){ if [ -f "${modslockfilefullpath}" ]; then - if [ -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then fn_print_warning_nl "${modprettyname} has already been installed" sleep 1 @@ -174,17 +181,7 @@ fn_mod_already_installed(){ # Add the mod to the installed mods list fn_mod_add_list(){ - # Create lgsm/data/mods directory - if [ ! -d "${modsdatadir}" ]; then - mkdir -p "${modsdatadir}" - fn_script_log "Created ${modsdatadir}" - fi - # Create lgsm/data/${modslockfile} - if [ ! -f "${modslockfilefullpath}" ]; then - touch "${modslockfilefullpath}" - fn_script_log "Created ${modslockfilefullpath}" - fi - # Input mod name to lockfile + # Append modname to lockfile if it's not already in it if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then echo "${modcommand}" >> "${modslockfilefullpath}" fn_script_log "${modcommand} added to ${modslockfile}" @@ -213,15 +210,16 @@ fn_check_files_list(){ fi } +# Apply some postinstall fixes to make sure everything will be fine fn_postinstall_tasks(){ - # Prevent addons folder from being removed by clearing them in: ${modsdatadir}/${modcommand}-files.list + # Prevent sensitive directories from being erased upon uninstall by removing them them from: ${modsdatadir}/${modcommand}-files.list # Check file validity fn_check_files_list # Output to the user fn_print_dots "Rearranging ${modcommand}-files.list" sleep 0.5 fn_script_log_info "Rearranging ${modcommand}-files.list" - # What lines/files to remove from file list + # What lines/files to remove from file list (end var with a ";" separator) removefromlist="cfg;addons;" # Loop through files to remove from file list, # that way these files won't get removed upon uninstall @@ -234,6 +232,7 @@ fn_postinstall_tasks(){ # Then delete matching line(s)! sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" done + # Sourcemod fix # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then @@ -245,7 +244,11 @@ fn_postinstall_tasks(){ sleep 0.5 } -## mods_list.sh arrays +######################### +## mods_list.sh arrays ## +######################### + +## Define info for a mod # Define all variables from a mod at once when index is set to a separator fn_mod_info(){ @@ -253,6 +256,7 @@ fn_mod_info(){ if [ -z "$index" ]; then fn_print_error "index variable not set. Please report an issue to LGSM Team." echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + exitcode="1" core_exit.sh fi modcommand="${mods_global_array[index+1]}" @@ -270,6 +274,7 @@ fi moddescription="${mods_global_array[index+13]}" } +## Mod compatibility check # Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable fn_compatible_mod_games(){ From acdfafe4baca25105139f6b54120f795bbd5b185 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:12:48 +0100 Subject: [PATCH 162/325] polishing --- lgsm/functions/mods_list.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index e99ff2214..08d6805d8 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -24,13 +24,13 @@ fn_mods_info(){ # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) # None of those values can be empty - # [index] | Usage + # index | Usage # [0] | MOD: separator, all mods must begin with it # [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user # [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) # [4] | "filename": the output filename - # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) + # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating @@ -64,6 +64,7 @@ fn_mods_info(){ # Get a proper URL for mods that don't provide a good one (optional) fn_mods_scrape_urls(){ + fn_script_log "Retriving latest mods URLs" # Metamod metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" From 6df0855bdab3ac5d27d936db65056b06d08bda9b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 17 Jan 2017 21:13:25 +0000 Subject: [PATCH 163/325] added ip= --- lgsm/functions/info_config.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index e092c127b..547eb7c47 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -605,6 +605,7 @@ fn_info_config_sdtd(){ fn_info_config_mta(){ if [ ! -f "${servercfgfullpath}" ]; then + ip="${zero}" port="${unavailable}" httpport="${unavailable}" ase="${unavailable}" @@ -612,6 +613,7 @@ fn_info_config_mta(){ serverpassword="${unavailable}" maxplayers="${zero}" else + ip=$(grep -m 1 "serverip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') port=$(grep -m 1 "serverport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') httpport=$(grep -m 1 "httpport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') ase=$(grep -m 1 "ase" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') From 821db9741798a4129c5764fef3159545947e6824 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:17:03 +0100 Subject: [PATCH 164/325] Polishing --- lgsm/functions/command_mods_install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index dc3c497cc..219f00908 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -11,7 +11,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh -mods_list.sh fn_mods_install_init(){ fn_script_log "Entering mods & addons installation" @@ -52,8 +51,8 @@ fn_mod_installation(){ fn_mod_get_info_from_command # Check if mod is already installed fn_mod_already_installed - # Check and create required directories - fn_mods_dir + # Check and create required files + fn_mods_files # Clear lgsm/tmp/mods dir if exists then recreate it fn_clear_tmp_mods fn_mods_tmpdir @@ -77,9 +76,11 @@ fn_mod_installation(){ fn_script_log "${modprettyname} installed." else fn_print_fail "No mod was selected" + exitcode="1" core_exit.sh fi } fn_mods_install_init fn_mod_installation +core_exit.sh From f9da8c9a1ee6cebd004cdc3993c1e3630de9ce31 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 17 Jan 2017 21:19:01 +0000 Subject: [PATCH 165/325] corrections to mta ip= --- lgsm/functions/info_config.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 547eb7c47..0c95770cc 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -613,7 +613,6 @@ fn_info_config_mta(){ serverpassword="${unavailable}" maxplayers="${zero}" else - ip=$(grep -m 1 "serverip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') port=$(grep -m 1 "serverport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') httpport=$(grep -m 1 "httpport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') ase=$(grep -m 1 "ase" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') @@ -627,6 +626,10 @@ fn_info_config_mta(){ ase="Disabled" fi + ip=$(grep -m 1 "serverip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's///g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]') + ipsetinconfig=1 + ipinconfigvar="serverip" + # Not Set port=${port:-"NOT SET - Defaults to 22003"} httpport=${httpport:-"NOT SET - Defaults to 22005"} From c3924fa16ddda494663d0ccfc8350741bcd65d04 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:23:29 +0100 Subject: [PATCH 166/325] Polishing --- lgsm/functions/command_mods_remove.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 054e0cf20..3404f2feb 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Uninstall mods along with mods_list.sh. +# Description: Uninstall mods along with mods_list.sh and mods_core.sh. local commandname="MODS" local commandaction="Mod Remove" @@ -11,7 +11,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh -mods_list.sh fn_mods_remove_init(){ fn_script_log "Entering mods & addons removal" @@ -55,7 +54,7 @@ fn_mods_remove_init(){ # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command - # Returns ${modsfilelistsize} + # Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize}) fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" @@ -65,12 +64,14 @@ fn_mods_remove_init(){ sleep 4 } +# Uninstall the mod fn_mod_remove_process(){ - # Check file list in order to make sure we're able to remove the mod + # Go through every file and remove it modfileline="1" while [ $modfileline -le $modsfilelistsize ]; do - # Current line defines current mod command + # Current line defines current file to remove currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" + # If file or directory exists, then remove it if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" rm -rf "${modinstalldir}/${currentfileremove}" @@ -89,3 +90,4 @@ fn_mod_remove_process(){ fn_mods_remove_init fn_mod_remove_process +core_exit.sh From 77c42746ccda457444d6b19e7b84891b05b99bff Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:23:47 +0100 Subject: [PATCH 167/325] Polishing --- lgsm/functions/command_mods_update.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index c737d2a4a..40250a58d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -11,7 +11,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh -mods_list.sh fn_mods_update_init(){ fn_script_log "Entering mods & addons update" @@ -59,8 +58,8 @@ fn_mods_update_loop(){ echo "" fn_print_dots_nl "Updating ${modprettyname}" fn_script_log "Updating ${modprettyname}." - # Check and create required directories - fn_mods_dir + # Check and create required files + fn_mods_files # Clear lgsm/tmp/mods dir if exists then recreate it fn_clear_tmp_mods fn_mods_tmpdir @@ -89,6 +88,7 @@ fn_mods_update_loop(){ else fn_print_fail "No mod was selected" fn_script_log_fail "No mod was selected." + exitcode="1" core_exit.sh fi done @@ -99,3 +99,4 @@ fn_mods_update_loop(){ fn_mods_update_init fn_mods_update_loop +core_exit.sh From b048b14b2357b2850b18d51224a3c5f67980fce0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 17 Jan 2017 21:32:37 +0000 Subject: [PATCH 168/325] check_config must be completed before check_ip --- lgsm/functions/check.sh | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 25fead75b..bc0b9f83c 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -42,6 +42,14 @@ do fi done +local allowed_commands_array=( command_console.sh command_debug.sh command_details.sh command_monitor.sh command_start.sh command_stop.sh ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${function_selfname}" ]; then + check_config.sh + fi +done + local allowed_commands_array=( command_debug.sh command_details.sh command_monitor.sh command_start.sh command_stop.sh ) for allowed_command in "${allowed_commands_array[@]}" do @@ -60,13 +68,7 @@ do fi done -local allowed_commands_array=( command_console.sh command_debug.sh command_details.sh command_monitor.sh command_start.sh command_stop.sh ) -for allowed_command in "${allowed_commands_array[@]}" -do - if [ "${allowed_command}" == "${function_selfname}" ]; then - check_config.sh - fi -done + local allowed_commands_array=( command_details.sh command_monitor.sh command_start.sh command_stop.sh command_ts3_server_pass.sh command_update.sh command_details.sh command_validate.sh ) for allowed_command in "${allowed_commands_array[@]}" From 7d848c30c4d8f88e6fdf6384444c6689cbddf50d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 17 Jan 2017 21:40:00 +0000 Subject: [PATCH 169/325] added no-clobber option preventing overwriting of already existing configs --- lgsm/functions/install_config.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index e8501eaa6..3bb99da89 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -34,13 +34,13 @@ fn_default_config_remote(){ echo "copying ${config} config file." fn_script_log_info "copying ${servercfg} config file." if [ "${config}" == "${servercfgdefault}" ]; then - cp -v "${lgsmdir}/default-configs/${config}" "${servercfgfullpath}" + cp -nv "${lgsmdir}/default-configs/${config}" "${servercfgfullpath}" elif [ "${gamename}" == "ARMA 3" ]&&[ "${config}" == "${networkcfgdefault}" ]; then - cp -v "${lgsmdir}/default-configs/${config}" "${networkcfgfullpath}" + cp -nv "${lgsmdir}/default-configs/${config}" "${networkcfgfullpath}" elif [ "${gamename}" == "Don't Starve Together" ]&&[ "${config}" == "${clustercfgdefault}" ]; then cp -nv "${lgsmdir}/default-configs/${clustercfgdefault}" "${clustercfgfullpath}" else - cp -v "${lgsmdir}/default-configs/${config}" "${servercfgdir}/${config}" + cp -nv "${lgsmdir}/default-configs/${config}" "${servercfgdir}/${config}" fi done sleep 1 @@ -361,6 +361,13 @@ elif [ "${gamename}" == "No More Room in Hell" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars +elif [ "${gamename}" == "Multi Theft Auto" ]; then + gamedirname="MultiTheftAuto" + fn_check_cfgdir + array_configs+=( acl.xml mtaserver.conf vehiclecolors.conf ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Mumble" ]; then gamedirname="Mumble" array_configs+=( murmur.ini ) @@ -498,11 +505,4 @@ elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars -elif [ "${gamename}" == "Multi Theft Auto" ]; then - gamedirname="MultiTheftAuto" - fn_check_cfgdir - array_configs+=( acl.xml mtaserver.conf vehiclecolors.conf ) - fn_fetch_default_config - fn_default_config_remote - fn_set_config_vars fi From 6a5bad9db2b4e2abb0b4ed8b964cd20f4d2d2786 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:41:48 +0100 Subject: [PATCH 170/325] Validate after Oxide uninstall --- lgsm/functions/mods_core.sh | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index b466340b0..b6f36b26d 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -210,7 +210,7 @@ fn_check_files_list(){ fi } -# Apply some postinstall fixes to make sure everything will be fine +# Apply some post-install fixes to make sure everything will be fine fn_postinstall_tasks(){ # Prevent sensitive directories from being erased upon uninstall by removing them them from: ${modsdatadir}/${modcommand}-files.list # Check file validity @@ -244,6 +244,18 @@ fn_postinstall_tasks(){ sleep 0.5 } +# Apply some post-uninstall fixes to make sure everything will be fine + +fn_postuninstall_tasks(){ + # Oxide fix + # Oxide replaces server files, so a validate is required after uninstall + if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then + fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" + fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" + command_validate.sh + fi +} + ######################### ## mods_list.sh arrays ## ######################### From ea37fc9b684e340a59677b5b0c016f9361e7f710 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:42:47 +0100 Subject: [PATCH 171/325] validate after remove oxide --- lgsm/functions/command_mods_remove.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 3404f2feb..67b4e7f1d 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -84,6 +84,8 @@ fn_mod_remove_process(){ # Remove from installed mods list fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" + # Post install tasks to solve potential issues + fn_postuninstall_tasks fn_print_ok_nl "Removed ${modprettyname}" fn_script_log "Removed ${modprettyname}" } From e38afe11ba2a7ad244a2f29c37e6770ea722f925 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:50:01 +0100 Subject: [PATCH 172/325] exitbypass --- lgsm/functions/mods_core.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index b6f36b26d..fbfa9e5db 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -245,14 +245,15 @@ fn_postinstall_tasks(){ } # Apply some post-uninstall fixes to make sure everything will be fine - fn_postuninstall_tasks(){ # Oxide fix # Oxide replaces server files, so a validate is required after uninstall if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" + exitbypass="1" command_validate.sh + unset exitbypass fi } From 88c70c99288c0a60ac4f0a867c30930efd6b77e5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 17 Jan 2017 22:55:59 +0100 Subject: [PATCH 173/325] Validate fix Fixes Fixes #991 for validate command Also, it lacked a line jump. --- lgsm/functions/command_validate.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 6125ed513..3627acdb6 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -9,6 +9,7 @@ local commandaction="Validate" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_validation(){ + echo "" echo -e " * Validating may overwrite some customised files." echo -en " * https://developer.valvesoftware.com/wiki/SteamCMD#Validate" sleep 3 @@ -19,7 +20,9 @@ fn_validation(){ cd "${rootdir}/steamcmd" - if [ $(command -v stdbuf) ]; then + # Detects if unbuffer command is available for 32 bit distributions only. + info_distro.sh + if [ $(command -v stdbuf) ]&&[ "${arch}" != "x86_64" ]; then unbuffer="stdbuf -i0 -o0 -e0" fi From 213ab5ee0859248ca49eeb72d9200c4703a27f91 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 18 Jan 2017 21:17:30 +0000 Subject: [PATCH 174/325] fixes unary operator expected --- lgsm/functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index 7355c840c..b1db1b8fd 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -117,7 +117,7 @@ fn_fetch_file(){ # trap to remove part downloaded files trap fn_fetch_trap INT # if larger file shows progress bar - if [ ${filename##*.} == "bz2" ]||[ ${filename##*.} == "gz" ]||[ ${filename##*.} == "zip" ]||[ ${filename##*.} == "jar" ]; then + if [ "${filename##*.}" == "bz2" ]||[ "${filename##*.}" == "gz" ]||[ "${filename##*.}" == "zip" ]||[ "${filename##*.}" == "jar" ]; then echo -ne "downloading ${filename}..." sleep 1 curlcmd=$(${curlcmd} --progress-bar --fail -L -o "${filedir}/${filename}" "${fileurl}") From 6409a07af93ab4ef9b4506326404123659e2f95b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 18 Jan 2017 21:17:42 +0000 Subject: [PATCH 175/325] removed tabs --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index fbfa9e5db..813db7e8c 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -67,8 +67,8 @@ fn_clear_tmp_mods(){ # Create tmp download mod directory fn_mods_tmpdir(){ if [ ! -d "${modstmpdir}" ]; then - mkdir -p "${modstmpdir}" - fn_script_log "Creating temp mod download directory: ${modstmpdir}" + mkdir -p "${modstmpdir}" + fn_script_log "Creating temp mod download directory: ${modstmpdir}" fi } From c61440d1be3202a09be980f8ff34cae5787e9db6 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 18 Jan 2017 21:52:49 +0000 Subject: [PATCH 176/325] Updated info_config.sh to match other servers --- lgsm/functions/info_config.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 0c95770cc..0164999a3 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -631,11 +631,11 @@ fn_info_config_mta(){ ipinconfigvar="serverip" # Not Set - port=${port:-"NOT SET - Defaults to 22003"} - httpport=${httpport:-"NOT SET - Defaults to 22005"} - ase=${ase:-"NOT SET - Defaults to Disabled"} + port=${port:-"22003"} + httpport=${httpport:-"22005"} + ase=${ase:-"Disabled"} servername=${servername:-"NOT SET"} - serverpassword=${serverpassword:-"NOT SET - Defaults to none"} + serverpassword=${serverpassword:-"NOT SET"} maxplayers=${maxplayers:-"0"} fi } From a54a34c8a33e3ccca90802cb441ea4e074be09ed Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 18 Jan 2017 21:56:00 +0000 Subject: [PATCH 177/325] Removed ini variable as not required --- lgsm/functions/command_details.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index c227694c8..e34f65702 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -735,8 +735,8 @@ fn_details_mta(){ echo -e "netstat -atunp | grep mta-server64" echo -e "" { - echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL\tINI VARIABLE" - echo -e "> Game\tOUTBOUND\t${port}\tudp\tPort=${port}" + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tOUTBOUND\t${port}\tudp" echo -e "> HTTP Server\tINBOUND\t${httpport}\ttcp" if [ "${ase}" == "Enabled" ]; then echo -e "> ASE Game_Monitor\tOUTBOUND\t$((${port} + 123))\tudp" From 0546be54d287cfc961e267dbc0802a00f0a0fb4a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 18 Jan 2017 23:29:17 +0100 Subject: [PATCH 178/325] Attempt for installed mods list --- lgsm/functions/mods_core.sh | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 813db7e8c..e6d78ede0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -402,7 +402,6 @@ fn_mods_available(){ fn_mods_show_available(){ # Set and reset vars compatiblemodslistindex=0 - spaces=" " # As long as we're within index values while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do # Set values for convenience @@ -423,6 +422,23 @@ fn_mods_show_available(){ fi } + +# Builds installed mods list and display it to the user. +fn_installed_mods_list(){ + # Set variables + installedmodsline=1 + installedmodslist=() + while [ $installedmodsline -le $installedmodscount ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )"" + installedmodslist+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" ) + fn_mod_get_info_from_command + echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * \e[36m${displayedmodcommand}\e[0m" + let installedmodsline=installedmodsline+1 + done + echo "" +} + # Get details of a mod any (relevant and unique, such as full mod name or install command) value fn_mod_get_info_from_command(){ # Variable to know when job is done From 3853dd36cd3c31322abe91ded943a28e34985c0a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 18 Jan 2017 23:30:45 +0100 Subject: [PATCH 179/325] attempd for new mods remove list --- lgsm/functions/command_mods_remove.sh | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 67b4e7f1d..bf0d13f7c 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -27,17 +27,10 @@ fn_mods_remove_init(){ fn_script_log_info "No mods or addons to remove." core_exit.sh fi - # Build installed mods list and display to the user. - installedmodsline=1 - availablemodsremove=() - while [ $installedmodsline -le $installedmodscount ]; do - availablemodsremove+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" ) - echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" - let installedmodsline=installedmodsline+1 - done - echo "" + # Displays installed addons to the user + fn_installed_mods_list # Keep prompting as long as the user input doesn't correspond to an available mod - while [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; do + while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " read -r usermodselect # Exit if user says exit or abort @@ -46,7 +39,7 @@ fn_mods_remove_init(){ echo "Aborted." core_exit.sh # Supplementary output upon invalid user input - elif [[ ! " ${availablemodsremove[@]} " =~ " ${usermodselect} " ]]; then + elif [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid mod." echo " * Enter a valid mod or input exit to abort." fi From f645ace2433b39d1a82bf10c36831567f9c67c73 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 18 Jan 2017 23:55:37 +0100 Subject: [PATCH 180/325] () lolilol --- lgsm/functions/mods_core.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index e6d78ede0..91ef10dc7 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -422,15 +422,14 @@ fn_mods_show_available(){ fi } - # Builds installed mods list and display it to the user. fn_installed_mods_list(){ # Set variables - installedmodsline=1 + installedmodsline="1" installedmodslist=() while [ $installedmodsline -le $installedmodscount ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )"" - installedmodslist+=( "$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" ) + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + installedmodslist+="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" fn_mod_get_info_from_command echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" echo -e " * \e[36m${displayedmodcommand}\e[0m" From 11174b4ed887be31b179501fac035af097de4b8b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:03:47 +0100 Subject: [PATCH 181/325] corrected variables --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 91ef10dc7..30195b350 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -431,8 +431,8 @@ fn_installed_mods_list(){ currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" installedmodslist+="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" fn_mod_get_info_from_command - echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * \e[36m${displayedmodcommand}\e[0m" + echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" + echo -e " * \e[36m${modcommand}\e[0m" let installedmodsline=installedmodsline+1 done echo "" From efe7b219a68e15084716189126942b40a422ff03 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:08:38 +0100 Subject: [PATCH 182/325] installedmodslist --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 30195b350..c77c3364e 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -429,10 +429,10 @@ fn_installed_mods_list(){ installedmodslist=() while [ $installedmodsline -le $installedmodscount ]; do currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" - installedmodslist+="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" fn_mod_get_info_from_command echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" echo -e " * \e[36m${modcommand}\e[0m" + installedmodslist+=( "${modcommand}" ) let installedmodsline=installedmodsline+1 done echo "" From e83683f198b4dd01d21e65a0e1cbee326d4fb937 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:45:15 +0100 Subject: [PATCH 183/325] fn_installed_mods_lightlist --- lgsm/functions/mods_core.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index c77c3364e..b8084cbcf 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -438,6 +438,28 @@ fn_installed_mods_list(){ echo "" } +# Display a simple list of installed mods +fn_installed_mods_lightlist(){ + # How many mods installed + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + if [ -f "${modslockfilefullpath}" ]&&[ $installedmodscount -gt 0 ]; then + echo "=================================" + echo "Installed mods/addons + # Set variables + installedmodsline="1" + installedmodslist=() + # Loop through mods + while [ $installedmodsline -le $installedmodscount ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + fn_mod_get_info_from_command + echo -e " * \e[1m${modprettyname}\e[0m" + installedmodslist+=( "${modcommand}" ) + let installedmodsline=installedmodsline+1 + done + echo "" + fi +} + # Get details of a mod any (relevant and unique, such as full mod name or install command) value fn_mod_get_info_from_command(){ # Variable to know when job is done From 16f54c62814b182d379987601f25c2bf5284c48b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:45:25 +0100 Subject: [PATCH 184/325] fn_installed_mods_lightlist --- lgsm/functions/command_mods_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 219f00908..beb1ac242 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -13,6 +13,8 @@ check.sh mods_core.sh fn_mods_install_init(){ + # Display installed mods + fn_installed_mods_lightlist fn_script_log "Entering mods & addons installation" echo "=================================" echo "${gamename} mods & addons installation" From b2c96b67fcd90661bf861d539039e3f2fc55e41e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:50:09 +0100 Subject: [PATCH 185/325] "" --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index b8084cbcf..146b60c71 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -444,7 +444,7 @@ fn_installed_mods_lightlist(){ installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" if [ -f "${modslockfilefullpath}" ]&&[ $installedmodscount -gt 0 ]; then echo "=================================" - echo "Installed mods/addons + echo "Installed mods/addons" # Set variables installedmodsline="1" installedmodslist=() From 3593866157e6ae6037de0978a0d743279c746434 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:52:43 +0100 Subject: [PATCH 186/325] echo "" moved --- lgsm/functions/mods_core.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 146b60c71..5c62e8981 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -435,7 +435,6 @@ fn_installed_mods_list(){ installedmodslist+=( "${modcommand}" ) let installedmodsline=installedmodsline+1 done - echo "" } # Display a simple list of installed mods @@ -456,7 +455,6 @@ fn_installed_mods_lightlist(){ installedmodslist+=( "${modcommand}" ) let installedmodsline=installedmodsline+1 done - echo "" fi } From 156b351d10c2cc7888c037308989896183ec7f16 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:53:10 +0100 Subject: [PATCH 187/325] echo "" moved here --- lgsm/functions/command_mods_remove.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index bf0d13f7c..63f7f5bec 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -29,6 +29,7 @@ fn_mods_remove_init(){ fi # Displays installed addons to the user fn_installed_mods_list + echo "" # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " From c9ef22f68778706cb9603a0ef277638cae49ab12 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 01:36:52 +0100 Subject: [PATCH 188/325] Prompt if already installed --- lgsm/functions/mods_core.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 5c62e8981..3268379ad 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -172,8 +172,14 @@ fn_mod_already_installed(){ fn_print_warning_nl "${modprettyname} has already been installed" sleep 1 echo " * Config files, if any, might be overwritten." - echo " * Press ctrl + c to abort." - sleep 3 + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; core_exit.sh;; + * ) echo "Please answer yes or no.";; + esac + done fi fn_script_log "${modprettyname} is already installed, overwriting any file." fi From fa8e32a7a3360c01af4092231c2dfe64a42fb013 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 21:14:55 +0100 Subject: [PATCH 189/325] Fixed sourcemod URL --- lgsm/functions/mods_list.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 08d6805d8..7012fa1f7 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -68,12 +68,12 @@ fn_mods_scrape_urls(){ # Metamod metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" - metamodfasterurl="http://cdn.probablyaserver.com/sourcemod/" - metamodurl="${metamodfasterurl}/${metamodlatestfile}" + metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" + metamodurl="${metamoddownloadurl}/${metamodlatestfile}" # Sourcemod sourcemodmversion="1.8" - sourcemodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" - sourcemodlatestfile="$(wget "${sourcemodscrapeurl}/?MD" -q -O -| grep "sourcemod-" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" - sourcemodfasterurl="http://cdn.probablyaserver.com/sourcemod/" - sourcemodurl="${sourcemodfasterurl}/${sourcemodlatestfile}" + sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" + sourcemodlatestfile="$(wget "${sourcemodscrapeurl}/?MD" -q -O -)" + sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" + sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" } From 8a08cda9055abf338379e9a9dd98737570d1b4ad Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 21:18:33 +0100 Subject: [PATCH 190/325] "/?MD" drugs are bad --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 7012fa1f7..7f795cbe1 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -73,7 +73,7 @@ fn_mods_scrape_urls(){ # Sourcemod sourcemodmversion="1.8" sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" - sourcemodlatestfile="$(wget "${sourcemodscrapeurl}/?MD" -q -O -)" + sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" } From 858f1f24b895666e0f2b04fafbeb7f0a538340a0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 22:53:02 +0100 Subject: [PATCH 191/325] Executable not found message --- lgsm/functions/check_permissions.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 1411e649c..38ea23eca 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -123,6 +123,12 @@ fn_check_permissions(){ fi fi fi + else + fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" + fn_print_fail_nl "Executable ${execname} was not found." + echo " * Is the server properly installed?" + exitcode="1" + core_exit.sh fi } From b126bc6584c40d3b3a3290831361e3fbd08255b3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 22:53:56 +0100 Subject: [PATCH 192/325] Cleaning message --- lgsm/functions/check_permissions.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 38ea23eca..65ade3aae 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -125,8 +125,7 @@ fn_check_permissions(){ fi else fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" - fn_print_fail_nl "Executable ${execname} was not found." - echo " * Is the server properly installed?" + fn_print_fail_nl "Executable ${execname} was not found" exitcode="1" core_exit.sh fi From a96b54748828950f12b758332addf5cca72b2b8f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 22:58:39 +0100 Subject: [PATCH 193/325] Reverted changes --- lgsm/functions/check_permissions.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 65ade3aae..1411e649c 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -123,11 +123,6 @@ fn_check_permissions(){ fi fi fi - else - fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" - fn_print_fail_nl "Executable ${execname} was not found" - exitcode="1" - core_exit.sh fi } From 5f95892b8dde450109ee51d121bd2029f97cf973 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:04:03 +0100 Subject: [PATCH 194/325] Check if executable exists --- lgsm/functions/check_executable.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lgsm/functions/check_executable.sh diff --git a/lgsm/functions/check_executable.sh b/lgsm/functions/check_executable.sh new file mode 100644 index 000000000..a0a81aa4d --- /dev/null +++ b/lgsm/functions/check_executable.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# LGSM check_system_dir.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Checks if systemdir is accessible. + +local commandname="CHECK" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +# Check if executable exists +if [ -f "${executabledir}/${execname}" ]; then + fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" + if [ -d "${scriptlogdir}" ]; then + fn_print_fail_nl "Executable ${execname} was not found" + fi + exitcode="1" + core_exit.sh +fi From f5bda64008b160528f013e972d1ad961ced98256 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:04:41 +0100 Subject: [PATCH 195/325] check_executable.sh --- lgsm/functions/check.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 25fead75b..42d0a90b2 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -83,3 +83,11 @@ do check_system_requirements.sh fi done + +local allowed_commands_array=( command_start.sh ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${function_selfname}" ]; then + check_executable.sh + fi +done From a11aca6af94e0c892597fbf13d2aa2df3ac04741 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:05:17 +0100 Subject: [PATCH 196/325] check_executable.sh --- lgsm/functions/core_functions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index fc9dfaab0..4bfc4c9b2 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -228,6 +228,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +check_executable.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + check_glibc.sh(){ functionfile="${FUNCNAME}" fn_fetch_function From 625ba3e558db64e83231c6d3f0dde25a98ef1bb7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:07:27 +0100 Subject: [PATCH 197/325] Maybe check executable first --- lgsm/functions/check.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 42d0a90b2..255ab5ee1 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -18,6 +18,14 @@ if [ "${function_selfname}" != "command_install.sh" ]&&[ "${function_selfname}" check_system_dir.sh fi +local allowed_commands_array=( command_start.sh ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${function_selfname}" ]; then + check_executable.sh + fi +done + local allowed_commands_array=( command_debug.sh command_start.sh command_install.sh ) for allowed_command in "${allowed_commands_array[@]}" do @@ -83,11 +91,3 @@ do check_system_requirements.sh fi done - -local allowed_commands_array=( command_start.sh ) -for allowed_command in "${allowed_commands_array[@]}" -do - if [ "${allowed_command}" == "${function_selfname}" ]; then - check_executable.sh - fi -done From 7ea7a6d94be3df682a41d5cad9453a4150644657 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:16:14 +0100 Subject: [PATCH 198/325] I'm dumb --- lgsm/functions/check_executable.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_executable.sh b/lgsm/functions/check_executable.sh index a0a81aa4d..94337a26d 100644 --- a/lgsm/functions/check_executable.sh +++ b/lgsm/functions/check_executable.sh @@ -8,7 +8,7 @@ local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" # Check if executable exists -if [ -f "${executabledir}/${execname}" ]; then +if [ ! -f "${executabledir}/${execname}" ]; then fn_script_log_warn "Expected executable not found: ${executabledir}/${execname}" if [ -d "${scriptlogdir}" ]; then fn_print_fail_nl "Executable ${execname} was not found" From 16b03293455ea885a957a1f44b7f7e956851d52b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 23:50:59 +0100 Subject: [PATCH 199/325] spacing --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 63f7f5bec..779c86fd9 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -13,7 +13,7 @@ check.sh mods_core.sh fn_mods_remove_init(){ - fn_script_log "Entering mods & addons removal" + fn_script_log "Entering mods & addons removal" echo "=================================" echo "${gamename} mods & addons removal" echo "" From c5d94762189bc461681131ecffb2740861e162c0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 19 Jan 2017 23:30:05 +0000 Subject: [PATCH 200/325] Added command_install_resources_mta.sh --- .../command_install_resources_mta.sh | 31 ++++++++ lgsm/functions/core_functions.sh | 5 ++ lgsm/functions/core_getopt.sh | 72 ++++++++++++++++++- 3 files changed, 107 insertions(+), 1 deletion(-) create mode 100644 lgsm/functions/command_install_resources_mta.sh diff --git a/lgsm/functions/command_install_resources_mta.sh b/lgsm/functions/command_install_resources_mta.sh new file mode 100644 index 000000000..4748774d5 --- /dev/null +++ b/lgsm/functions/command_install_resources_mta.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# LGSM command_install_resources_mta.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Installs the default resources for Multi Theft Auto. + +local commandname="DEFAULT_RESOURCES" +local commandaction="Default Resources" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +fn_install_resources(){ + echo "" + echo "Installing Default Resources" + echo "=================================" + fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tmpdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="97a587509698f7f010bcd6e5c6dd9c31" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fn_dl_extract "${filedir}" "${filename}" "${resourcesdir}" + echo "Default Resources Installed." +} + +fn_print_header + +fn_print_warning_nl "Installing the default resources with existing resources may cause issues." +while true; do + read -e -i "y" -p "Do you want to install MTA default resources? [Y/n]" yn + case $yn in + [Yy]* ) fn_install_resources && break;; + [Nn]* ) break;; + * ) echo "Please answer yes or no.";; + esac +done \ No newline at end of file diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 77fff799f..8c92f3198 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -182,6 +182,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +command_install_resources_mta.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + command_fastdl.sh(){ functionfile="${FUNCNAME}" fn_fetch_function diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 416427ae8..bc18e3292 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -342,6 +342,73 @@ case "${getopt}" in esac } +fn_getopt_mta(){ +case "${getopt}" in + st|start) + command_start.sh;; + sp|stop) + command_stop.sh;; + r|restart) + command_restart.sh;; + uf|update-functions) + command_update_functions.sh;; + m|monitor) + command_monitor.sh;; + ta|test-alert) + command_test_alert.sh;; + dt|details) + command_details.sh;; + pd|postdetails) + command_postdetails.sh;; + b|backup) + command_backup.sh;; + c|console) + command_console.sh;; + d|debug) + command_debug.sh;; + dev|dev-debug) + command_dev_debug.sh;; + i|install) + command_install.sh;; + ir|install-default-resources) + command_install_resources_mta.sh;; + ai|auto-install) + fn_autoinstall;; + dd|detect-deps) + command_dev_detect_deps.sh;; + dg|detect-glibc) + command_dev_detect_glibc.sh;; + dl|detect-ldd) + command_dev_detect_ldd.sh;; + *) + if [ -n "${getopt}" ]; then + echo -e "${red}Unknown command${default}: $0 ${getopt}" + exitcode=2 + fi + echo "Usage: $0 [option]" + echo "${gamename} - Linux Game Server Manager - Version ${version}" + echo "https://gameservermanagers.com/${selfname}" + echo -e "" + echo -e "${lightyellow}Commands${default}" + { + echo -e "${blue}start\t${default}st |Start the server." + echo -e "${blue}stop\t${default}sp |Stop the server." + echo -e "${blue}restart\t${default}r |Restart the server." + echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded." + echo -e "${blue}monitor\t${default}m |Checks that the server is running." + echo -e "${blue}test-alert\t${default}ta |Sends test alert." + echo -e "${blue}details\t${default}dt |Displays useful infomation about the server." + echo -e "${blue}postdetails\t${default}pd |Post stripped details to pastebin (for support)" + echo -e "${blue}backup\t${default}b |Create archive of the server." + echo -e "${blue}console\t${default}c |Console allows you to access the live view of a server." + echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." + echo -e "${blue}install\t${default}i |Install the server." + echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." + echo -e "${blue}install-default-resources\t${default}ir |Install the MTA default resources." + } | column -s $'\t' -t + esac +} + fn_getopt_mumble(){ case "${getopt}" in st|start) @@ -772,6 +839,9 @@ elif [ "${gamename}" == "Garry's Mod" ]; then # Minecraft elif [ "${engine}" == "lwjgl2" ]; then fn_getopt_minecraft +# Multi Theft Auto +elif [ "${gamename}" == "Multi Theft Auto" ]; then + fn_getopt_mta # Mumble elif [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble @@ -789,7 +859,7 @@ elif [ "${engine}" == "unreal2" ]; then elif [ "${engine}" == "unreal" ]; then fn_getopt_unreal # Generic -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}" == "Multi Theft Auto" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +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}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_getopt_generic_no_update elif [ "${gamename}" == "Factorio" ]; then fn_getopt_generic_update_no_steam From 233275c3eb17855b74ef429679b83922647650e6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:16:06 +0100 Subject: [PATCH 201/325] Attempt for cleaner functions (core) --- lgsm/functions/mods_core.sh | 141 +++++++++++++++++++++++++++++++----- 1 file changed, 122 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 3268379ad..fa9328e26 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -428,42 +428,138 @@ fn_mods_show_available(){ fi } -# Builds installed mods list and display it to the user. -fn_installed_mods_list(){ - # Set variables +# Checks if mods have been installed +# Also returns ${installedmodscount} if mods were found +fn_check_installed_mods(){ + # Count installed mods + if [ -f "${modslockfilefullpath}" ]; then + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + fi +} + +# A simple function to exit if no mods were installed +# Also returns ${installedmodscount} if mods were found +fn_mods_exit_if_not_installed(){ + # Checks if mods have been installed + # Also returns ${installedmodscount} if mods were found + fn_check_installed_mods + # If no mods lockfile is found or if it is empty + if [ ! -f "${modslockfilefullpath}" ]||[ -z "${installedmodscount}" ]||[ $installedmodscount -le 0 ]; then + fn_print_information_nl "No installed mods or addons were found" + echo " * Install mods using LGSM first with: ./${selfname} mods-install" + fn_script_log_info "No installed mods or addons were found." + core_exit.sh + fi +} + +# Builds installed mods list and sets available commands according to installed mods +# (requires ${installedmodscount} from fn_check_installed_mods) +fn_mods_available_commands_from_installed(){ + # Set/reset variables installedmodsline="1" installedmodslist=() + # Loop through every line of the installed mods list ${modslockfilefullpath} while [ $installedmodsline -le $installedmodscount ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + # Get mod info to make sure mod exists fn_mod_get_info_from_command - echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" - echo -e " * \e[36m${modcommand}\e[0m" + # Add the mod to available commands installedmodslist+=( "${modcommand}" ) + # Increment line check let installedmodsline=installedmodsline+1 done } -# Display a simple list of installed mods -fn_installed_mods_lightlist(){ - # How many mods installed - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - if [ -f "${modslockfilefullpath}" ]&&[ $installedmodscount -gt 0 ]; then +# Displays a detailed list of installed mods +# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run +fn_installed_mods_detailed_list(){ + fn_check_installed_mods + fn_mods_available_commands_from_installed + # Were now based on ${installedmodslist} array's values + # We're gonna go through all available commands, get details and display them to the user + for ((index=0; index <= ${#installedmodslist[@]}; index++)); do + # Current mod is the "index" value of the array we're going through + currentmod="${installedmodslist[index]}" + # Get mod info + fn_mod_get_info_from_command + # Display mod info to the user + echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" + echo -e " * \e[36m${modcommand}\e[0m" + done +} + +# Displays a detailed list of installed mods +# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run +fn_installed_mods_medium_list(){ + fn_check_installed_mods + fn_mods_available_commands_from_installed + # Were now based on ${installedmodslist} array's values + # We're gonna go through all available commands, get details and display them to the user + for ((index=0; index <= ${#installedmodslist[@]}; index++)); do + # Current mod is the "index" value of the array we're going through + currentmod="${installedmodslist[index]}" + # Get mod info + fn_mod_get_info_from_command + # Display mod info to the user + echo -e "\e[36m${modcommand}\e[0m - \e[1m${modprettyname}\e[0m - ${moddescription}" + done +} + +# Displays a simple list of installed mods +# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run +# This list is only displayed when some mods are installed +fn_installed_mods_light_list(){ + fn_check_installed_mods + fn_mods_available_commands_from_installed + if [ $installedmodscount -gt 0 ]; then echo "=================================" echo "Installed mods/addons" - # Set variables - installedmodsline="1" - installedmodslist=() - # Loop through mods - while [ $installedmodsline -le $installedmodscount ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + # Were now based on ${installedmodslist} array's values + # We're gonna go through all available commands, get details and display them to the user + for ((index=0; index <= ${#installedmodslist[@]}; index++)); do + # Current mod is the "index" value of the array we're going through + currentmod="${installedmodslist[index]}" + # Get mod info fn_mod_get_info_from_command + # Display simple mod info to the user echo -e " * \e[1m${modprettyname}\e[0m" - installedmodslist+=( "${modcommand}" ) - let installedmodsline=installedmodsline+1 done fi } +# Displays a simple list of installed mods for mods-update command +# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run +fn_installed_mods_update_list(){ + fn_check_installed_mods + fn_mods_available_commands_from_installed + echo "=================================" + echo "Installed mods/addons" + # Were now based on ${installedmodslist} array's values + # We're gonna go through all available commands, get details and display them to the user + for ((index=0; index <= ${#installedmodslist[@]}; index++)); do + # Current mod is the "index" value of the array we're going through + currentmod="${installedmodslist[index]}" + # Get mod info + fn_mod_get_info_from_command + # Display simple mod info to the user according to the update policy + # If modkeepfiles is not set for some reason, that's a problem + if [ -z "${modkeepfiles}" ]; then + fn_script_log_error "Couldn't find update policy for ${modprettyname}" + fn_print_error_nl "Couldn't find update policy for ${modprettyname}" + exitcode="1" + core_exit.sh + # If the mod won't get updated + elif [ "${modkeepfiles}" == "NOUPDATE" ]; then + echo -e " * \e[31m${modprettyname}\e[0m (won't be updated)" + # If the mode is just overwritten + elif [ "${modkeepfiles}" == "OVERWRITE" ]; then + echo -e " * \e[1m${modprettyname}\e[0m (overwrite)" + else + echo -e " * \e[33m${modprettyname}\e[0m (common custom files remain untouched)" + fi + done +} + # Get details of a mod any (relevant and unique, such as full mod name or install command) value fn_mod_get_info_from_command(){ # Variable to know when job is done @@ -488,6 +584,13 @@ fn_mod_get_info_from_command(){ break fi done + # What happens if mod is not found + if [ "${modinfocommand}" == "0" ]; then + fn_script_log_error "Couldn't find information for ${currentmod}" + fn_print_error_nl ""Couldn't find information for ${currentmod}" + exitcode="1" + core_exit.sh + fi } fn_gsm_requirements From 849c13037a0e5203cf32add675b5ac4b086897db Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:16:24 +0100 Subject: [PATCH 202/325] Attempt for the use of cleaner core functions --- lgsm/functions/command_mods_remove.sh | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 779c86fd9..006367850 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -17,18 +17,11 @@ fn_mods_remove_init(){ echo "=================================" echo "${gamename} mods & addons removal" echo "" - # Installed mod dir is "${modslockfilefullpath}" - # How many mods are installed - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - # If no mods to be updated - if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then - fn_print_information_nl "No mods or addons to remove" - echo " * Did you install any mod using LGSM?" - fn_script_log_info "No mods or addons to remove." - core_exit.sh - fi + # A simple function to exit if no mods were installed + # Also returns ${installedmodscount} if mods were found + fn_mods_exit_if_not_installed # Displays installed addons to the user - fn_installed_mods_list + fn_installed_mods_medium_list echo "" # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do From 9830a59ff1143eac9dff969dd13862d644ace0b4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:16:30 +0100 Subject: [PATCH 203/325] Attempt for the use of cleaner core functions --- lgsm/functions/command_mods_update.sh | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 40250a58d..88ac2fb31 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -14,29 +14,16 @@ mods_core.sh fn_mods_update_init(){ fn_script_log "Entering mods & addons update" + # A simple function to exit if no mods were installed + # Also returns ${installedmodscount} if mods were found + fn_mods_exit_if_not_installed echo "=================================" echo "${gamename} mods & addons update" echo "" - # Installed mod dir is "${modslockfilefullpath}" - # How many mods will be updated - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" - # If no mods to be updated - if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then - fn_print_information_nl "No mods or addons to be updated" - echo " * Did you install any mod using LGSM?" - fn_script_log_info "No mods or addons to be updated" - core_exit.sh - else - fn_print_information_nl "${installedmodscount} mods or addons will be updated:" - fn_script_log_info "${installedmodscount} mods or addons will be updated" - # Loop showing mods to update - installedmodsline=1 - while [ $installedmodsline -le $installedmodscount ]; do - echo -e " * \e[36m$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")\e[0m" - let installedmodsline=installedmodsline+1 - done - sleep 2 - fi + fn_print_information_nl "${installedmodscount} mods or addons will be updated:" + fn_script_log_info "${installedmodscount} mods or addons will be updated" + # Display a list of installed addons + fn_installed_mods_update_list } # Recursively list all installed mods and apply update From bd07a687ace5d655f4fe016fdfa7aab33aab246d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:16:34 +0100 Subject: [PATCH 204/325] Attempt for the use of cleaner core functions --- lgsm/functions/command_mods_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index beb1ac242..c0097a5b5 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -14,7 +14,7 @@ mods_core.sh fn_mods_install_init(){ # Display installed mods - fn_installed_mods_lightlist + fn_installed_mods_light_list fn_script_log "Entering mods & addons installation" echo "=================================" echo "${gamename} mods & addons installation" From 59f5d8606b5ba4cda489083eff914d5a8f014d06 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 01:19:05 +0100 Subject: [PATCH 205/325] Damn automatic double quotes --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index fa9328e26..ce0582f60 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -587,7 +587,7 @@ fn_mod_get_info_from_command(){ # What happens if mod is not found if [ "${modinfocommand}" == "0" ]; then fn_script_log_error "Couldn't find information for ${currentmod}" - fn_print_error_nl ""Couldn't find information for ${currentmod}" + fn_print_error_nl "Couldn't find information for ${currentmod}" exitcode="1" core_exit.sh fi From 532335aa1328d7896dae99f0245ff18bfdfbf7a5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 02:59:25 +0100 Subject: [PATCH 206/325] new index variables should fix issue --- lgsm/functions/mods_core.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index ce0582f60..d97b310e4 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -477,9 +477,9 @@ fn_installed_mods_detailed_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((dlindex=0; dlindex <= ${#installedmodslist[@]}; dlindex++)); do + # Current mod is the "dlindex" value of the array we're going through + currentmod="${installedmodslist[dlindex]}" # Get mod info fn_mod_get_info_from_command # Display mod info to the user @@ -495,9 +495,9 @@ fn_installed_mods_medium_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((mlindex=0; mlindex <= ${#installedmodslist[@]}; mlindex++)); do + # Current mod is the "mlindex" value of the array we're going through + currentmod="${installedmodslist[mlindex]}" # Get mod info fn_mod_get_info_from_command # Display mod info to the user @@ -516,9 +516,9 @@ fn_installed_mods_light_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((llindex=0; llindex <= ${#installedmodslist[@]}; llindex++)); do + # Current mod is the "llindex" value of the array we're going through + currentmod="${installedmodslist[llindex]}" # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user @@ -536,9 +536,9 @@ fn_installed_mods_update_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((ulindex=0; ulindex <= ${#installedmodslist[@]}; ulindex++)); do + # Current mod is the "ulindex" value of the array we're going through + currentmod="${installedmodslist[ulindex]}" # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user according to the update policy From 9f01c51788c74e8cd0df2e7b7b55632b104b7ecb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:13:12 +0100 Subject: [PATCH 207/325] < rather than <= for lists --- lgsm/functions/mods_core.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index d97b310e4..60adb8d91 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -477,7 +477,7 @@ fn_installed_mods_detailed_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((dlindex=0; dlindex <= ${#installedmodslist[@]}; dlindex++)); do + for ((dlindex=0; dlindex < ${#installedmodslist[@]}; dlindex++)); do # Current mod is the "dlindex" value of the array we're going through currentmod="${installedmodslist[dlindex]}" # Get mod info @@ -495,7 +495,7 @@ fn_installed_mods_medium_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((mlindex=0; mlindex <= ${#installedmodslist[@]}; mlindex++)); do + for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do # Current mod is the "mlindex" value of the array we're going through currentmod="${installedmodslist[mlindex]}" # Get mod info @@ -516,7 +516,7 @@ fn_installed_mods_light_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((llindex=0; llindex <= ${#installedmodslist[@]}; llindex++)); do + for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do # Current mod is the "llindex" value of the array we're going through currentmod="${installedmodslist[llindex]}" # Get mod info From ec68e34e862a894ed4c900761cb1f79aba684c24 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:27:15 +0100 Subject: [PATCH 208/325] Move mods error message --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 006367850..392f3332a 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -16,10 +16,10 @@ fn_mods_remove_init(){ fn_script_log "Entering mods & addons removal" echo "=================================" echo "${gamename} mods & addons removal" - echo "" # A simple function to exit if no mods were installed # Also returns ${installedmodscount} if mods were found fn_mods_exit_if_not_installed + echo "" # Displays installed addons to the user fn_installed_mods_medium_list echo "" From 3c966c5bc6082d1a4744b09887a347b306ce8886 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:27:51 +0100 Subject: [PATCH 209/325] Move mods error message --- lgsm/functions/command_mods_update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 88ac2fb31..4dd290f0f 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -14,11 +14,11 @@ mods_core.sh fn_mods_update_init(){ fn_script_log "Entering mods & addons update" + echo "=================================" + echo "${gamename} mods & addons update" # A simple function to exit if no mods were installed # Also returns ${installedmodscount} if mods were found fn_mods_exit_if_not_installed - echo "=================================" - echo "${gamename} mods & addons update" echo "" fn_print_information_nl "${installedmodscount} mods or addons will be updated:" fn_script_log_info "${installedmodscount} mods or addons will be updated" From abb4ba32c7984d0238fecc487c2836e1b3aad34a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:31:10 +0100 Subject: [PATCH 210/325] < rather than <= --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 60adb8d91..cd99e74a5 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -536,7 +536,7 @@ fn_installed_mods_update_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((ulindex=0; ulindex <= ${#installedmodslist[@]}; ulindex++)); do + for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do # Current mod is the "ulindex" value of the array we're going through currentmod="${installedmodslist[ulindex]}" # Get mod info From 98b0b91d843c5c34f7d7c77ab9654fa5d36eb59f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 03:31:42 +0100 Subject: [PATCH 211/325] no nl --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 4dd290f0f..9eb257907 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -38,7 +38,7 @@ fn_mods_update_loop(){ fn_mod_get_info_from_command # Don't update the mod if it's policy is to "NOUPDATE" if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_info_nl "${modprettyname} won't be updated to preserve custom files" + fn_print_info "${modprettyname} won't be updated to preserve custom files" fn_script_log "${modprettyname} won't be updated to preserve custom files." let installedmodsline=installedmodsline+1 else From d9a1030837d0b8133d14d691b88708a06639e973 Mon Sep 17 00:00:00 2001 From: Braunson Date: Fri, 20 Jan 2017 11:03:19 -0600 Subject: [PATCH 212/325] Lowercase engine name --- MultiTheftAuto/mtaserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiTheftAuto/mtaserver b/MultiTheftAuto/mtaserver index 07ac899f0..c119ac910 100644 --- a/MultiTheftAuto/mtaserver +++ b/MultiTheftAuto/mtaserver @@ -61,7 +61,7 @@ githubbranch="master" ## LinuxGSM Server Details # Do not edit gamename="Multi Theft Auto" -engine="RenderWare" +engine="renderware" ## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers servicename="mta-server" From fa5bafbed3163d7e80b603d1653ba48d40d22cfb Mon Sep 17 00:00:00 2001 From: Braunson Date: Fri, 20 Jan 2017 11:11:24 -0600 Subject: [PATCH 213/325] Removed default resource question when running the install after Daniel said so --- lgsm/functions/install_mta_resources.sh | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh index c1f16393a..4b6bc0c62 100644 --- a/lgsm/functions/install_mta_resources.sh +++ b/lgsm/functions/install_mta_resources.sh @@ -31,28 +31,7 @@ fn_install_libmysqlclient16(){ fi } -fn_install_resources(){ - echo "" - echo "Installing Default Resources" - echo "=================================" - fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tmpdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="97a587509698f7f010bcd6e5c6dd9c31" - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" - fn_dl_extract "${filedir}" "${filename}" "${resourcesdir}" - echo "Default Resources Installed." -} - fn_install_libmysqlclient16 -if [ -z "${autoinstall}" ]; then - echo "" - while true; do - read -e -i "y" -p "Do you want to have the default resources downloaded? (Server is inoperable without resources!) [y/N]" yn - case $yn in - [Yy]* ) fn_install_resources && break;; - [Nn]* ) break;; - * ) echo "Please answer yes or no.";; - esac - done -else -fn_print_warning_nl "./${selfname} auto-install does not download the default resources. If you require them use ./${selfname} install" -fi +fn_print_header +fn_print_information_nl "Server is inoperable by default without resources, you can install default ones by running the command install-default-resources" From bdb5ea53b9ccf32a50b371e130933aa773bc2cb8 Mon Sep 17 00:00:00 2001 From: Braunson Date: Fri, 20 Jan 2017 11:12:54 -0600 Subject: [PATCH 214/325] Format change --- lgsm/functions/install_mta_resources.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh index 4b6bc0c62..f4fff4010 100644 --- a/lgsm/functions/install_mta_resources.sh +++ b/lgsm/functions/install_mta_resources.sh @@ -33,5 +33,5 @@ fn_install_libmysqlclient16(){ fn_install_libmysqlclient16 -fn_print_header fn_print_information_nl "Server is inoperable by default without resources, you can install default ones by running the command install-default-resources" +echo "" From 544d4508cdb9ad68040f310d73ecd4206d33b414 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 20 Jan 2017 17:52:54 +0000 Subject: [PATCH 215/325] command_install_resources_mta.sh --- lgsm/functions/command_install.sh | 2 +- lgsm/functions/command_install_resources_mta.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 2da3992b7..15ed1bafd 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -35,7 +35,7 @@ elif [ "${gamename}" == "Don't Starve Together" ]; then elif [ "${gamename}" == "TeamSpeak 3" ]; then install_ts3db.sh elif [ "${gamename}" == "Multi Theft Auto" ]; then - install_mta_resources.sh + command_install_resources_mta.sh fi fix.sh diff --git a/lgsm/functions/command_install_resources_mta.sh b/lgsm/functions/command_install_resources_mta.sh index 4748774d5..4c049115c 100644 --- a/lgsm/functions/command_install_resources_mta.sh +++ b/lgsm/functions/command_install_resources_mta.sh @@ -19,7 +19,6 @@ fn_install_resources(){ } fn_print_header - fn_print_warning_nl "Installing the default resources with existing resources may cause issues." while true; do read -e -i "y" -p "Do you want to install MTA default resources? [Y/n]" yn From ea018494b0758d94bcbc51bdba6c6d17fa3f154a Mon Sep 17 00:00:00 2001 From: Braunson Date: Fri, 20 Jan 2017 11:55:08 -0600 Subject: [PATCH 216/325] fix_mta for libmysql --- lgsm/functions/core_functions.sh | 10 +++++----- lgsm/functions/fix.sh | 2 ++ lgsm/functions/fix_mta.sh | 25 +++++++++++++++++++++++++ 3 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 lgsm/functions/fix_mta.sh diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 8c92f3198..df8b4980c 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -374,6 +374,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_mta.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Info info_config.sh(){ @@ -576,11 +581,6 @@ functionfile="${FUNCNAME}" fn_fetch_function } -install_mta_resources.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_function -} - # Calls the global Ctrl-C trap core_trap.sh diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 85a65a814..327fcccf9 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -47,6 +47,8 @@ if [ "${function_selfname}" != "command_install.sh" ]; then fix_ins.sh elif [ "${gamename}" == "Rust" ]; then fix_rust.sh + elif [ "${gamename}" == "Multi Theft Auto" ]; then + fix_mta.sh fi fi diff --git a/lgsm/functions/fix_mta.sh b/lgsm/functions/fix_mta.sh new file mode 100644 index 000000000..72d3228bd --- /dev/null +++ b/lgsm/functions/fix_mta.sh @@ -0,0 +1,25 @@ +#!/bin/bash +# LGSM fix_mta.sh function +# Author: Daniel Gibbs +# Contributor: ChaosMTA +# Website: https://gameservermanagers.com +# Description: Installs the libmysqlclient for database functions on the server +local commandname="FIX" +local commandaction="Fix" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +if [ ! -f /usr/lib/libmysqlclient.so.16 ]; then + fixname="libmysqlclient16 install" + fn_fix_msg_start + fn_print_warn_nl "libmysqlclient16 not installed. Installing.." + sleep 1 + fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="${lgsmdir}/lib"; filename="libmysqlclient.so.16"; executecmd="executecmd" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fn_fix_msg_end +fi +} + +fixname="libmysqlclient16" +fn_fix_msg_start +export LD_LIBRARY_PATH=:"${libdir}" +fn_fix_msg_end From f9a6d872ccff3aed94f5d24af147ff0aae838d3a Mon Sep 17 00:00:00 2001 From: Braunson Date: Fri, 20 Jan 2017 11:56:36 -0600 Subject: [PATCH 217/325] Typo --- lgsm/functions/fix_mta.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/fix_mta.sh b/lgsm/functions/fix_mta.sh index 72d3228bd..e63972e50 100644 --- a/lgsm/functions/fix_mta.sh +++ b/lgsm/functions/fix_mta.sh @@ -17,7 +17,6 @@ if [ ! -f /usr/lib/libmysqlclient.so.16 ]; then fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_fix_msg_end fi -} fixname="libmysqlclient16" fn_fix_msg_start From 8ad76124ffcabf2c32c6c57a0302e15f917c2d32 Mon Sep 17 00:00:00 2001 From: Braunson Date: Fri, 20 Jan 2017 11:57:20 -0600 Subject: [PATCH 218/325] No MD5 for default resources --- lgsm/functions/command_install_resources_mta.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_install_resources_mta.sh b/lgsm/functions/command_install_resources_mta.sh index 4c049115c..678e412ad 100644 --- a/lgsm/functions/command_install_resources_mta.sh +++ b/lgsm/functions/command_install_resources_mta.sh @@ -12,13 +12,14 @@ fn_install_resources(){ echo "" echo "Installing Default Resources" echo "=================================" - fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tmpdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="97a587509698f7f010bcd6e5c6dd9c31" + fileurl="http://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip"; filedir="${tmpdir}"; filename="multitheftauto_resources.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="nomd5" fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${resourcesdir}" echo "Default Resources Installed." } fn_print_header + fn_print_warning_nl "Installing the default resources with existing resources may cause issues." while true; do read -e -i "y" -p "Do you want to install MTA default resources? [Y/n]" yn @@ -27,4 +28,4 @@ while true; do [Nn]* ) break;; * ) echo "Please answer yes or no.";; esac -done \ No newline at end of file +done From b4d3bb549e36198d332e4e5decd6bc30231791e0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 19:00:02 +0100 Subject: [PATCH 219/325] Fixed error spacing with a ! |ERROR!] is better than [ERROR ], as per @ChaosMTA and @Cedarlug mentioned. --- lgsm/functions/core_messages.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 540729af7..66a1d6d80 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -157,17 +157,17 @@ fn_print_fail_nl(){ # [ ERROR ] fn_print_error(){ if [ -n "${commandaction}" ]; then - echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" + echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@" else - echo -en "${creeol}[${red}ERROR ${default}] $@" + echo -en "${creeol}[${red}ERROR!${default}] $@" fi } fn_print_error_nl(){ if [ -n "${commandaction}" ]; then - echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" + echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@" else - echo -en "${creeol}[${red}ERROR ${default}] $@" + echo -en "${creeol}[${red}ERROR!${default}] $@" fi sleep 0.5 echo -en "\n" From a84ba451aa2f744de6b32f63769939f1cefec5c1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 20 Jan 2017 21:01:46 +0000 Subject: [PATCH 220/325] Changes to the UI more to come soon --- lgsm/functions/command_mods_install.sh | 18 ++++++------- lgsm/functions/command_mods_remove.sh | 35 ++++++++++++++------------ lgsm/functions/mods_core.sh | 24 +++++++++--------- 3 files changed, 39 insertions(+), 38 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index c0097a5b5..ee7d5bdbc 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -6,35 +6,33 @@ # Description: List and installs available mods along with mods_list.sh and mods_core.sh. local commandname="MODS" -local commandaction="Mod Installation" +local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh fn_mods_install_init(){ + fn_print_header # Display installed mods fn_installed_mods_light_list - fn_script_log "Entering mods & addons installation" - echo "=================================" - echo "${gamename} mods & addons installation" echo "" + echo "Available addons/mods" + echo "=================================" + # Display available mods from mods_list.sh fn_mods_show_available echo "" # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a \e[36mmod\e[0m to install (or exit to abort): " + echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): " read -r usermodselect # Exit if user says exit or abort if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then - fn_script_log "User aborted." - echo "Aborted." core_exit.sh # Supplementary output upon invalid user input elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then - fn_print_error2_nl "${usermodselect} is not a valid mod." - echo " * Enter a valid mod or input exit to abort." + fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done # Gives a pretty name to the user and get all mod info @@ -77,7 +75,7 @@ fn_mod_installation(){ fn_print_ok_nl "${modprettyname} installed" fn_script_log "${modprettyname} installed." else - fn_print_fail "No mod was selected" + fn_print_fail "No addon/mod was selected" exitcode="1" core_exit.sh fi diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 392f3332a..d49b81441 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -6,16 +6,16 @@ # Description: Uninstall mods along with mods_list.sh and mods_core.sh. local commandname="MODS" -local commandaction="Mod Remove" +local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh fn_mods_remove_init(){ - fn_script_log "Entering mods & addons removal" + fn_print_header + echo "Remove addons/mods" echo "=================================" - echo "${gamename} mods & addons removal" # A simple function to exit if no mods were installed # Also returns ${installedmodscount} if mods were found fn_mods_exit_if_not_installed @@ -25,19 +25,26 @@ fn_mods_remove_init(){ echo "" # Keep prompting as long as the user input doesn't correspond to an available mod while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a \e[36mmod\e[0m to \e[31mremove\e[0m (or exit to abort): " + echo -en "Enter a ${cyan}mod${default} to ${red}remove${default} (or exit to abort): " read -r usermodselect # Exit if user says exit or abort if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then - fn_script_log "User aborted." - echo "Aborted." - core_exit.sh - # Supplementary output upon invalid user input - elif [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; then - fn_print_error2_nl "${usermodselect} is not a valid mod." - echo " * Enter a valid mod or input exit to abort." + core_exit.sh + # Supplementary output upon invalid user input + elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then + fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done + fn_print_warning_nl "You are about to remove ${usermodselect}." + echo " * Any custom files/configuration will be removed." + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; exit;; + * ) echo "Please answer yes or no.";; + esac + done # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command @@ -45,17 +52,13 @@ fn_mods_remove_init(){ fn_check_files_list fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" - echo "" - echo " * Any mod's custom file will be deleted." - echo " * Press ctrl + c to abort." - sleep 4 } # Uninstall the mod fn_mod_remove_process(){ # Go through every file and remove it modfileline="1" - while [ $modfileline -le $modsfilelistsize ]; do + while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" # If file or directory exists, then remove it diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index cd99e74a5..be815c3b3 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -6,7 +6,7 @@ # Description: Core functions for mods list/install/update/remove local commandname="MODS" -local commandaction="Core functions for mods" +local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" ## Useful variables @@ -416,8 +416,8 @@ fn_mods_show_available(){ displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" # Output mods to the user - echo -e "\e[1m${displayedmodname}\e[0m - ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * \e[36m${displayedmodcommand}\e[0m" + echo -e "\e[1m${displayedmodname}${default} - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * ${cyan}${displayedmodcommand}${default}" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" done @@ -483,8 +483,8 @@ fn_installed_mods_detailed_list(){ # Get mod info fn_mod_get_info_from_command # Display mod info to the user - echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}" - echo -e " * \e[36m${modcommand}\e[0m" + echo -e "\e[1m${modprettyname}${default} - ${moddescription} - ${modsite}" + echo -e " * ${cyan}${modcommand}${default}" done } @@ -501,7 +501,7 @@ fn_installed_mods_medium_list(){ # Get mod info fn_mod_get_info_from_command # Display mod info to the user - echo -e "\e[36m${modcommand}\e[0m - \e[1m${modprettyname}\e[0m - ${moddescription}" + echo -e "${cyan}${modcommand}${default} - \e[1m${modprettyname}${default} - ${moddescription}" done } @@ -512,8 +512,8 @@ fn_installed_mods_light_list(){ fn_check_installed_mods fn_mods_available_commands_from_installed if [ $installedmodscount -gt 0 ]; then + echo "Installed addons/mods" echo "=================================" - echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do @@ -522,7 +522,7 @@ fn_installed_mods_light_list(){ # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user - echo -e " * \e[1m${modprettyname}\e[0m" + echo -e " * \e[1m${green}${modprettyname}${default}${default}" done fi } @@ -533,7 +533,7 @@ fn_installed_mods_update_list(){ fn_check_installed_mods fn_mods_available_commands_from_installed echo "=================================" - echo "Installed mods/addons" + echo "Installed addons/mods" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do @@ -550,12 +550,12 @@ fn_installed_mods_update_list(){ core_exit.sh # If the mod won't get updated elif [ "${modkeepfiles}" == "NOUPDATE" ]; then - echo -e " * \e[31m${modprettyname}\e[0m (won't be updated)" + echo -e " * \e[31m${modprettyname}${default} (won't be updated)" # If the mode is just overwritten elif [ "${modkeepfiles}" == "OVERWRITE" ]; then - echo -e " * \e[1m${modprettyname}\e[0m (overwrite)" + echo -e " * \e[1m${modprettyname}${default} (overwrite)" else - echo -e " * \e[33m${modprettyname}\e[0m (common custom files remain untouched)" + echo -e " * \e[33m${modprettyname}${default} (common custom files remain untouched)" fi done } From 63c697fe33f6c338d24893de5871860ae8eab56b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 20 Jan 2017 21:44:08 +0000 Subject: [PATCH 221/325] spaces --- lgsm/functions/command_mods_install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index ee7d5bdbc..dec97c7a3 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -16,10 +16,9 @@ fn_mods_install_init(){ fn_print_header # Display installed mods fn_installed_mods_light_list - echo "" + echo "Available addons/mods" echo "=================================" - # Display available mods from mods_list.sh fn_mods_show_available echo "" From 6e407e74874d5b12c29a6f491d7a505cfa35a612 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 20 Jan 2017 21:45:15 +0000 Subject: [PATCH 222/325] minor ui changes --- lgsm/functions/mods_core.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index be815c3b3..cc67fd4f3 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -16,14 +16,14 @@ extractdir="${modstmpdir}/extracted" modsdatadir="${lgsmdir}/data/mods" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" -# Database initialization +# Database initialisation mods_list.sh -# Sets some gsm requirements -fn_gsm_requirements(){ +# Sets some lgsm requirements +fn_lgsm_requirements(){ # If tmpdir variable doesn't exist, LGSM is too old if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LGSM version is too old." + fn_print_fail "Your LinuxGSM version is too old." echo " * Please do a full update, including ${selfname} script." core_exit.sh fi @@ -145,11 +145,11 @@ fn_mod_fileslist(){ fn_script_log "Building ${modcommand}-files.list" sleep 0.5 # ${modsdatadir}/${modcommand}-files.list - find "${extractdir}" -mindepth 1 -printf '%P\n' > ${modsdatadir}/${modcommand}-files.list + find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.list fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" # Adding removed files if needed if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then - cat "${modsdatadir}/.removedfiles.tmp" >> ${modsdatadir}/${modcommand}-files.list + cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.list fi fn_print_ok "Building ${modcommand}-files.list" sleep 0.5 @@ -511,7 +511,7 @@ fn_installed_mods_medium_list(){ fn_installed_mods_light_list(){ fn_check_installed_mods fn_mods_available_commands_from_installed - if [ $installedmodscount -gt 0 ]; then + if [ "${installedmodscount}" -gt 0 ]; then echo "Installed addons/mods" echo "=================================" # Were now based on ${installedmodslist} array's values @@ -522,8 +522,9 @@ fn_installed_mods_light_list(){ # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user - echo -e " * \e[1m${green}${modprettyname}${default}${default}" + echo -e " * \e[1m${green}${modcommand}${default}${default}" done + echo "" fi } @@ -593,7 +594,7 @@ fn_mod_get_info_from_command(){ fi } -fn_gsm_requirements +fn_lgsm_requirements fn_mods_scrape_urls fn_mods_info fn_mods_available From 27b88e3baf7f3c69304a590ef956db3f4b0f3bcc Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 21 Jan 2017 01:04:13 +0000 Subject: [PATCH 223/325] "" --- lgsm/functions/command_dev_detect_ldd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_dev_detect_ldd.sh b/lgsm/functions/command_dev_detect_ldd.sh index 07ad3f581..16f1f9473 100644 --- a/lgsm/functions/command_dev_detect_ldd.sh +++ b/lgsm/functions/command_dev_detect_ldd.sh @@ -22,8 +22,8 @@ elif [ -f "${filesdir}" ]; then fi echo "" -files=$(find ${filesdir} | wc -l) -find ${filesdir} -type f -print0 | +files=$(find "${filesdir}" | wc -l) +find "${filesdir}" -type f -print0 | while IFS= read -r -d $'\0' line; do #ldd -v $line 2>/dev/null|grep "=>" >>"${tmpdir}/detect_ldd.tmp" if [ -n "$(ldd $line 2>/dev/null |grep -v "not a dynamic executable")" ]; then From 4d692f59e2888661cf44f59fe3e8ff2dbb8d1747 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 21 Jan 2017 01:07:19 +0000 Subject: [PATCH 224/325] Various UI and code changes. --- lgsm/functions/command_mods_install.sh | 67 +++++------- lgsm/functions/command_mods_remove.sh | 6 +- lgsm/functions/mods_core.sh | 144 ++++++++++++++----------- 3 files changed, 114 insertions(+), 103 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index dec97c7a3..5dca19bf6 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -34,50 +34,41 @@ fn_mods_install_init(){ fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done + echo "" + echo "Installing ${modprettyname}" + echo "=================================" + fn_script_log "Installing ${modprettyname}." # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" - fn_mod_get_info_from_command - fn_print_dots_nl "Installing ${modprettyname}" - sleep 1 - fn_script_log "Installing ${modprettyname}." } # Run all required operation fn_mod_installation(){ - # If a mod was selected - if [ -n "${currentmod}" ]; then - # Get mod info - fn_mod_get_info_from_command - # Check if mod is already installed - fn_mod_already_installed - # Check and create required files - fn_mods_files - # Clear lgsm/tmp/mods dir if exists then recreate it - fn_clear_tmp_mods - fn_mods_tmpdir - # Download mod - fn_mod_dl - # Extract the mod - fn_mod_extract - # Convert to lowercase if needed - fn_mod_lowercase - # Build a file list - fn_mod_fileslist - # Copying to destination - fn_mod_copy_destination - # Ending with installation routines - fn_mod_add_list - # Post install fixes - fn_postinstall_tasks - # Cleaning - fn_clear_tmp_mods - fn_print_ok_nl "${modprettyname} installed" - fn_script_log "${modprettyname} installed." - else - fn_print_fail "No addon/mod was selected" - exitcode="1" - core_exit.sh - fi + # Get mod info + fn_mod_get_info_from_command + # Check if mod is already installed + fn_mod_already_installed + # Check and create required files + fn_mods_files + # Clear lgsm/tmp/mods dir if exists then recreate it + fn_clear_tmp_mods + fn_mods_tmpdir + # Download & extract mod + fn_install_mod_dl_extract + # Convert to lowercase if needed + fn_mod_lowercase + # Build a file list + fn_mod_fileslist + # Copying to destination + fn_mod_copy_destination + # Ending with installation routines + fn_mod_add_list + # Post install fixes + fn_postinstall_tasks + # Cleaning + fn_clear_tmp_mods + echo "${modprettyname} installed" + fn_script_log "${modprettyname} installed." } fn_mods_install_init diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index d49b81441..464b2caff 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -60,7 +60,7 @@ fn_mod_remove_process(){ modfileline="1" while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove - currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.list")" + currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" # If file or directory exists, then remove it if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" @@ -69,8 +69,8 @@ fn_mod_remove_process(){ let modfileline=modfileline+1 done # Remove file list - fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.list" - rm -rf "${modsdatadir}/${modcommand}-files.list" + fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" + rm -rf "${modsdatadir}/${modcommand}-files.txt" # Remove from installed mods list fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index cc67fd4f3..47fa1ecf8 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -11,9 +11,10 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" ## Useful variables # Files and Directories -modstmpdir="${tmpdir}/mods" -extractdir="${modstmpdir}/extracted" -modsdatadir="${lgsmdir}/data/mods" +modsdir="${lgsmdir}/mods" +modstmpdir="${modsdir}/tmp" +extractdir="${modstmpdir}/extract" +modsdatadir="${modsdir}" modslockfile="installed-mods-listing" modslockfilefullpath="${modsdatadir}/${modslockfile}" # Database initialisation @@ -34,13 +35,11 @@ fn_lgsm_requirements(){ fn_mods_files(){ if [ ! -d "${modinstalldir}" ]; then fn_script_log_info "Creating mods directory: ${modinstalldir}" - fn_print_dots "Creating mods directory" - sleep 0.5 - mkdir -p "${modinstalldir}" - fn_print_ok "Created mods directory" + echo "Creating mods directory" sleep 0.5 + mkdir -pv "${modinstalldir}" fi - # Create lgsm/data/mods directory + # Create data/mods directory if [ ! -d "${modsdatadir}" ]; then mkdir -p "${modsdatadir}" fn_script_log "Created ${modsdatadir}" @@ -52,11 +51,11 @@ fn_mods_files(){ fi } -# Clear mod download directory so that there is only one file in it since we don't the file name and extention +# Clear mod download directory so that there is only one file in it since we don't know the file name and extention fn_clear_tmp_mods(){ if [ -d "${modstmpdir}" ]; then rm -r "${modstmpdir}" - fn_script_log "Clearing temp mod download directory: ${modstmpdir}" + fn_script_log "Clearing mod download directory: ${modstmpdir}" fi # Clear temp file list as well if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then @@ -68,44 +67,49 @@ fn_clear_tmp_mods(){ fn_mods_tmpdir(){ if [ ! -d "${modstmpdir}" ]; then mkdir -p "${modstmpdir}" - fn_script_log "Creating temp mod download directory: ${modstmpdir}" + fn_script_log "Creating mod download directory: ${modstmpdir}" fi } -# Fetches mod URL -fn_mod_dl(){ - # fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" - fileurl="${modurl}" - filedir="${modstmpdir}" - filename="${modfilename}" - fn_script_log "Downloading mods to ${modstmpdir}" - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" +fn_install_mod_dl_extract(){ + fn_fetch_file "${modurl}" "${modstmpdir}" "${modfilename}" # Check if variable is valid checking if file has been downloaded and exists if [ ! -f "${modstmpdir}/${modfilename}" ]; then - fn_print_fail "An issue occurred upon downloading ${modprettyname}" + fn_print_failure "An issue occurred upon downloading ${modprettyname}" core_exit.sh fi -} - -# Extract the mod -fn_mod_extract(){ - # fn_dl_extract "${filedir}" "${filename}" "${extractdir}" - filename="${modfilename}" if [ ! -d "${extractdir}" ]; then mkdir -p "${extractdir}" fi - fn_script_log "Extracting ${modprettyname} to ${extractdir}" - fn_dl_extract "${filedir}" "${filename}" "${extractdir}" + fn_dl_extract "${modstmpdir}" "${filename}" "${extractdir}" } # Convert mod files to lowercase if needed fn_mod_lowercase(){ if [ "${modlowercase}" == "LowercaseOn" ]; then - fn_print_dots "Converting ${modprettyname} files to lowercase" + + echo -ne "converting ${modprettyname} files to lowercase..." sleep 0.5 fn_script_log "Converting ${modprettyname} files to lowercase" - find "${extractdir}" -depth -exec rename 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; - fn_print_ok "Converting ${modprettyname} files to lowercase" + files=$(find "${extractdir}" -depth | wc -l) + echo -en "\r" + while read SRC; do + DST=`dirname "${SRC}"`/`basename "${SRC}" | tr '[A-Z]' '[a-z]'` + if [ "${SRC}" != "${DST}" ] + then + [ ! -e "${DST}" ] && mv -T "${SRC}" "${DST}" || echo "${SRC} was not renamed" + ((renamedwc++)) + fi + echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." $'\r' + ((totalfileswc++)) + done < <(find "${extractdir}" -depth) + echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + else + fn_print_ok_eol_nl + fi sleep 0.5 fi } @@ -139,30 +143,39 @@ fn_remove_cfg_files(){ fi } -# Create ${modcommand}-files.list containing the full extracted file/directory list +# Create ${modcommand}-files.txt containing the full extracted file/directory list fn_mod_fileslist(){ - fn_print_dots "Building ${modcommand}-files.list" - fn_script_log "Building ${modcommand}-files.list" + echo -ne "building ${modcommand}-files.txt..." + fn_script_log "Building ${modcommand}-files.txt" sleep 0.5 - # ${modsdatadir}/${modcommand}-files.list - find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.list - fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.list}" + # ${modsdatadir}/${modcommand}-files.txt + find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.txt + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + else + fn_print_ok_eol_nl + fi + fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.txt}" # Adding removed files if needed if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then - cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.list + cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.txt fi - fn_print_ok "Building ${modcommand}-files.list" sleep 0.5 } # Copy the mod to the destination ${modinstalldir} fn_mod_copy_destination(){ - fn_print_dots "Copying ${modprettyname} to ${modinstalldir}" + echo -ne "copying ${modprettyname} to ${modinstalldir}..." fn_script_log "Copying ${modprettyname} to ${modinstalldir}" sleep 0.5 cp -Rf "${extractdir}/." "${modinstalldir}/" - fn_print_ok "Copying ${modprettyname} to ${modinstalldir}" - sleep 0.5 + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + else + fn_print_ok_eol_nl + fi } # Check if the mod is already installed and warn the user @@ -196,21 +209,21 @@ fn_mod_add_list(){ fn_check_files_list(){ # File list must exist and be valid before any operation on it - if [ -f "${modsdatadir}/${modcommand}-files.list" ]; then + if [ -f "${modsdatadir}/${modcommand}-files.txt" ]; then # How many lines is the file list - modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.list" | wc -l)" + modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.txt" | wc -l)" # If file list is empty if [ $modsfilelistsize -eq 0 ]; then - fn_print_error_nl "${modcommand}-files.list is empty" + fn_print_error_nl "${modcommand}-files.txt is empty" echo "Exiting." - fn_scrip_log_fatal "${modcommand}-files.list is empty" + fn_scrip_log_fatal "${modcommand}-files.txt is empty" exitcode="2" core_exit.sh fi else - fn_print_error_nl "${modsdatadir}/${modcommand}-files.list don't exist" + fn_print_error_nl "${modsdatadir}/${modcommand}-files.txt don't exist" echo "Exiting." - fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.list don't exist" + fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.txt don't exist" exitcode="2" core_exit.sh fi @@ -218,13 +231,13 @@ fn_check_files_list(){ # Apply some post-install fixes to make sure everything will be fine fn_postinstall_tasks(){ - # Prevent sensitive directories from being erased upon uninstall by removing them them from: ${modsdatadir}/${modcommand}-files.list + # Prevent sensitive directories from being erased upon uninstall by removing them from: ${modsdatadir}/${modcommand}-files.txt # Check file validity fn_check_files_list # Output to the user - fn_print_dots "Rearranging ${modcommand}-files.list" + echo -ne "tidy up ${modcommand}-files.txt..." sleep 0.5 - fn_script_log_info "Rearranging ${modcommand}-files.list" + fn_script_log_info "Rearranging ${modcommand}-files.txt" # What lines/files to remove from file list (end var with a ";" separator) removefromlist="cfg;addons;" # Loop through files to remove from file list, @@ -236,18 +249,25 @@ fn_postinstall_tasks(){ # Put current file into test variable removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" # Then delete matching line(s)! - sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.list" - done - + sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.txt" + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + break + fi + done + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + else + fn_print_ok_eol_nl + fi + # Sourcemod fix # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then - # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.list - sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.list" - sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.list" + # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.txt + sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.txt" + sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.txt" fi - fn_print_ok "Rearranging ${modcommand}-files.list" - sleep 0.5 } # Apply some post-uninstall fixes to make sure everything will be fine @@ -444,7 +464,7 @@ fn_mods_exit_if_not_installed(){ # Also returns ${installedmodscount} if mods were found fn_check_installed_mods # If no mods lockfile is found or if it is empty - if [ ! -f "${modslockfilefullpath}" ]||[ -z "${installedmodscount}" ]||[ $installedmodscount -le 0 ]; then + if [ ! -f "${modslockfilefullpath}" ]||[ -z "${installedmodscount}" ]||[ ${installedmodscount} -le 0 ]; then fn_print_information_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" fn_script_log_info "No installed mods or addons were found." @@ -459,7 +479,7 @@ fn_mods_available_commands_from_installed(){ installedmodsline="1" installedmodslist=() # Loop through every line of the installed mods list ${modslockfilefullpath} - while [ $installedmodsline -le $installedmodscount ]; do + while [ ${installedmodsline} -le ${installedmodscount} ]; do currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" # Get mod info to make sure mod exists fn_mod_get_info_from_command @@ -556,7 +576,7 @@ fn_installed_mods_update_list(){ elif [ "${modkeepfiles}" == "OVERWRITE" ]; then echo -e " * \e[1m${modprettyname}${default} (overwrite)" else - echo -e " * \e[33m${modprettyname}${default} (common custom files remain untouched)" + echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" fi done } From 1985955f3a2d9a0147877afe661e4c1392488a15 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 21 Jan 2017 22:39:39 +0000 Subject: [PATCH 225/325] Loads of UI improvements and fixes still lots of testing to do --- lgsm/functions/command_mods_install.sh | 4 +- lgsm/functions/command_mods_remove.sh | 54 +++++++++++++++++++---- lgsm/functions/mods_core.sh | 60 ++++++++++++++------------ lgsm/functions/mods_list.sh | 6 +-- 4 files changed, 82 insertions(+), 42 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 5dca19bf6..0169589c7 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -29,14 +29,14 @@ fn_mods_install_init(){ # Exit if user says exit or abort if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then core_exit.sh - # Supplementary output upon invalid user input + # Supplementary output upon invalid user input elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done echo "" echo "Installing ${modprettyname}" - echo "=================================" + echo "=================================" fn_script_log "Installing ${modprettyname}." # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 464b2caff..060898aa8 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -19,7 +19,6 @@ fn_mods_remove_init(){ # A simple function to exit if no mods were installed # Also returns ${installedmodscount} if mods were found fn_mods_exit_if_not_installed - echo "" # Displays installed addons to the user fn_installed_mods_medium_list echo "" @@ -30,12 +29,12 @@ fn_mods_remove_init(){ # Exit if user says exit or abort if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then core_exit.sh - # Supplementary output upon invalid user input + # Supplementary output upon invalid user input elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done - fn_print_warning_nl "You are about to remove ${usermodselect}." + fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}." echo " * Any custom files/configuration will be removed." while true; do read -e -i "y" -p "Continue? [Y/n]" yn @@ -44,40 +43,77 @@ fn_mods_remove_init(){ [Nn]* ) echo Exiting; exit;; * ) echo "Please answer yes or no.";; esac - done + done # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" fn_mod_get_info_from_command # Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize}) fn_check_files_list - fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" - fn_print_dots "Removing ${modsfilelistsize} files from ${modprettyname}" + } # Uninstall the mod fn_mod_remove_process(){ + fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" + echo -e "removing ${modprettyname}" + echo -e "* ${modsfilelistsize} files to be removed" + echo -e "* location: ${modinstalldir}" + sleep 1 # Go through every file and remove it modfileline="1" + tput sc while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" # If file or directory exists, then remove it + fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then - fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" rm -rf "${modinstalldir}/${currentfileremove}" + local exitcode=$? fi + tput rc; tput el + printf "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize} : ${currentfileremove}..." + + ((totalfileswc++)) let modfileline=modfileline+1 done + tput rc; tput ed; + echo -ne "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize}..." + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh + else + fn_print_ok_eol_nl + fi + sleep 0.5 # Remove file list + echo -en "removing ${modcommand}-files.txt..." + sleep 0.5 fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" rm -rf "${modsdatadir}/${modcommand}-files.txt" + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh + else + fn_print_ok_eol_nl + fi # Remove from installed mods list + echo -en "removing ${modcommand} from ${modslockfile}..." + sleep 0.5 fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" # Post install tasks to solve potential issues + local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh + else + fn_print_ok_eol_nl + fi fn_postuninstall_tasks - fn_print_ok_nl "Removed ${modprettyname}" - fn_script_log "Removed ${modprettyname}" + echo "${modprettyname} removed" + fn_script_log "${modprettyname} removed" } fn_mods_remove_init diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 47fa1ecf8..aead8e714 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -93,21 +93,23 @@ fn_mod_lowercase(){ fn_script_log "Converting ${modprettyname} files to lowercase" files=$(find "${extractdir}" -depth | wc -l) echo -en "\r" - while read SRC; do - DST=`dirname "${SRC}"`/`basename "${SRC}" | tr '[A-Z]' '[a-z]'` - if [ "${SRC}" != "${DST}" ] - then - [ ! -e "${DST}" ] && mv -T "${SRC}" "${DST}" || echo "${SRC} was not renamed" - ((renamedwc++)) - fi + while read src; do + dst=`dirname "${src}"`/`basename "${src}" | tr '[A-Z]' '[a-z]'` + if [ "${src}" != "${dst}" ] + then + [ ! -e "${dst}" ] && mv -T "${src}" "${dst}" || echo "${src} was not renamed" + local exitcode=$? + ((renamedwc++)) + fi echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." $'\r' ((totalfileswc++)) done < <(find "${extractdir}" -depth) echo -ne "${renamedwc} / ${totalfileswc} / $files converting ${modprettyname} files to lowercase..." - local exitcode=$? + if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - else + core_exit.sh + else fn_print_ok_eol_nl fi sleep 0.5 @@ -153,7 +155,7 @@ fn_mod_fileslist(){ local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - else + else fn_print_ok_eol_nl fi fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.txt}" @@ -173,7 +175,7 @@ fn_mod_copy_destination(){ local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - else + else fn_print_ok_eol_nl fi } @@ -213,19 +215,16 @@ fn_check_files_list(){ # How many lines is the file list modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.txt" | wc -l)" # If file list is empty - if [ $modsfilelistsize -eq 0 ]; then - fn_print_error_nl "${modcommand}-files.txt is empty" - echo "Exiting." - fn_scrip_log_fatal "${modcommand}-files.txt is empty" - exitcode="2" + if [ "${modsfilelistsize}" -eq 0 ]; then + fn_print_failure "${modcommand}-files.txt is empty" + echo "* Unable to remove ${modprettyname}" + fn_script_log_fatal "${modcommand}-files.txt is empty: Unable to remove ${modprettyname}." core_exit.sh fi else - fn_print_error_nl "${modsdatadir}/${modcommand}-files.txt don't exist" - echo "Exiting." - fn_scrip_log_fatal "${modsdatadir}/${modcommand}-files.txt don't exist" - exitcode="2" - core_exit.sh + fn_print_failure "${modsdatadir}/${modcommand}-files.txt does not exist" + fn_script_log_fatal "${modsdatadir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." + core_exit.sh fi } @@ -253,11 +252,11 @@ fn_postinstall_tasks(){ local exitcode=$? if [ ${exitcode} -ne 0 ]; then break - fi - done + fi + done if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - else + else fn_print_ok_eol_nl fi @@ -527,7 +526,7 @@ fn_installed_mods_medium_list(){ # Displays a simple list of installed mods # Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -# This list is only displayed when some mods are installed +# This list is only displayed when some mods are installed fn_installed_mods_light_list(){ fn_check_installed_mods fn_mods_available_commands_from_installed @@ -575,9 +574,11 @@ fn_installed_mods_update_list(){ # If the mode is just overwritten elif [ "${modkeepfiles}" == "OVERWRITE" ]; then echo -e " * \e[1m${modprettyname}${default} (overwrite)" - else + else echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" fi + ((totalmodsinstalled++)) + fn_script_log_info "${totalmodsinstalled} are already installed" done } @@ -598,17 +599,20 @@ fn_mod_get_info_from_command(){ modinfocommand="1" break fi + ((totalmods++)) done + fi # Exit the loop if job is done if [ "${modinfocommand}" == "1" ]; then break fi done + fn_script_log_info "${totalmods} are available for install" # What happens if mod is not found if [ "${modinfocommand}" == "0" ]; then - fn_script_log_error "Couldn't find information for ${currentmod}" - fn_print_error_nl "Couldn't find information for ${currentmod}" + fn_script_log_error "Could not find information for ${currentmod}" + fn_print_error_nl "Could not find information for ${currentmod}" exitcode="1" core_exit.sh fi diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 7f795cbe1..298da3ce1 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -4,7 +4,7 @@ # Contributor: UltimateByte # Website: https://gameservermanagers.com # Description: Lists and defines available mods for LGSM supported servers. -# Usage: To add a mod, you just need to add an array variable into fn_mods_info following the guide to set proper values. +# Usage: To add a mod, you just need to add an array variable into fn_mods_info following the guide to set proper values. # Usage: Then add this array to the mods_global_array. # Usage: If needed, you can scrape to define the download URL inside the fn_mods_scrape_urls function. @@ -35,7 +35,7 @@ fn_mods_info(){ # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value - # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value + # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) # [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install # [13] | "Short Description" a description showed to the user upon installation @@ -64,7 +64,7 @@ fn_mods_info(){ # Get a proper URL for mods that don't provide a good one (optional) fn_mods_scrape_urls(){ - fn_script_log "Retriving latest mods URLs" + fn_script_log_info "retrieving latest mods URLs" # Metamod metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" From 23030d8e0e5a3a2082bb443f2e718fbc7d25d348 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:00:10 +0000 Subject: [PATCH 226/325] Altered script log message for extracting --- lgsm/functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index b1db1b8fd..f7768a7cf 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -54,7 +54,6 @@ fn_dl_extract(){ extractdir="${3}" # extracts archives echo -ne "extracting ${filename}..." - fn_script_log_info "Extracting download" mime=$(file -b --mime-type "${filedir}/${filename}") if [ "${mime}" == "application/gzip" ]||[ "${mime}" == "application/x-gzip" ]; then @@ -72,6 +71,7 @@ fn_dl_extract(){ core_exit.sh else fn_print_ok_eol_nl + fn_script_log_pass "Extracting download: OK" fi } From e0e071139f49167acc1e8af8b55f5be987ff4741 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:02:07 +0000 Subject: [PATCH 227/325] removed color from log --- lgsm/functions/check_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 924d3f19b..4a040b13a 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -78,7 +78,7 @@ fn_found_missing_deps(){ fn_print_dots "Checking dependencies" sleep 0.5 fn_print_error_nl "Checking dependencies: missing: ${red}${array_deps_missing[@]}${default}" - fn_script_log_error "Checking dependencies: missing: ${red}${array_deps_missing[@]}${default}" + fn_script_log_error "Checking dependencies: missing: ${array_deps_missing[@]}" sleep 1 sudo -v > /dev/null 2>&1 if [ $? -eq 0 ]; then @@ -204,7 +204,7 @@ if [ -n "$(command -v dpkg-query)" ]; then array_deps_required+=( zlib1g:i386 libldap-2.4-2:i386 ) # Serious Sam 3: BFE elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then - array_deps_required+=( libxrandr2:i386 libglu1-mesa:i386 libxtst6:i386 libusb-1.0-0-dev:i386 libxxf86vm1:i386 libopenal1:i386 libssl1.0.0:i386 libgtk2.0-0:i386 libdbus-glib-1-2:i386 libnm-glib-dev:i386 ) + array_deps_required+=( libxrandr2:i386 libglu1-mesa:i386 libxtst6:i386 libusb-1.0-0-dev:i386 libxxf86vm1:i386 libopenal1:i386 libssl1.0.0:i386 libgtk2.0-0:i386 libdbus-glib-1-2:i386 libnm-glib-dev:i386 ) # Unreal Engine elif [ "${executable}" == "./ucc-bin" ]; then #UT2K4 From 1f566a9a4e176146efacf0a99207cec97efcd580 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:10:24 +0000 Subject: [PATCH 228/325] Reverting [ERROR!] to [ERROR ] b4d3bb549e36198d332e4e5decd6bc30231791e0 No other message have an ! and is not consistant. Nothing I can do about the space. --- lgsm/functions/core_messages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 66a1d6d80..632b01378 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -157,9 +157,9 @@ fn_print_fail_nl(){ # [ ERROR ] fn_print_error(){ if [ -n "${commandaction}" ]; then - echo -en "${creeol}[${red}ERROR!${default}] ${commandaction} ${servicename}: $@" + echo -en "${creeol}[${red}ERROR ${default}] ${commandaction} ${servicename}: $@" else - echo -en "${creeol}[${red}ERROR!${default}] $@" + echo -en "${creeol}[${red}ERROR ${default}] $@" fi } From 5b4a172edc1da298824bd38d5beb344c6ea0f512 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:57:28 +0000 Subject: [PATCH 229/325] removed space --- lgsm/functions/command_dev_debug.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/command_dev_debug.sh b/lgsm/functions/command_dev_debug.sh index 6186c0fb0..e17a8a719 100644 --- a/lgsm/functions/command_dev_debug.sh +++ b/lgsm/functions/command_dev_debug.sh @@ -8,7 +8,6 @@ local commandname="DEV-DEBUG" local commandaction="Dev-Debug" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" - if [ -f "${rootdir}/.dev-debug" ]; then rm "${rootdir}/.dev-debug" fn_print_ok_nl "Disabled dev-debug" From 8b3721f25a3af83545e3ffad1bc17097fb890a34 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 Jan 2017 00:58:05 +0000 Subject: [PATCH 230/325] Many various changes Im being laxy with commits. Still work to be done --- lgsm/functions/command_mods_install.sh | 11 +- lgsm/functions/command_mods_remove.sh | 5 +- lgsm/functions/command_mods_update.sh | 4 +- lgsm/functions/mods_core.sh | 168 ++++++++++++++----------- lgsm/functions/mods_list.sh | 4 +- 5 files changed, 107 insertions(+), 85 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 0169589c7..d15250594 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -9,9 +9,6 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh -mods_core.sh - fn_mods_install_init(){ fn_print_header # Display installed mods @@ -37,7 +34,7 @@ fn_mods_install_init(){ echo "" echo "Installing ${modprettyname}" echo "=================================" - fn_script_log "Installing ${modprettyname}." + fn_script_log_info "${modprettyname} selected for install" # Gives a pretty name to the user and get all mod info currentmod="${usermodselect}" } @@ -68,9 +65,11 @@ fn_mod_installation(){ # Cleaning fn_clear_tmp_mods echo "${modprettyname} installed" - fn_script_log "${modprettyname} installed." + fn_script_log_pass "${modprettyname} installed." } +check.sh +mods_core.sh fn_mods_install_init fn_mod_installation -core_exit.sh +core_exit.sh \ No newline at end of file diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 060898aa8..6c8fdf0bb 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -9,8 +9,7 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh -mods_core.sh + fn_mods_remove_init(){ fn_print_header @@ -116,6 +115,8 @@ fn_mod_remove_process(){ fn_script_log "${modprettyname} removed" } +check.sh +mods_core.sh fn_mods_remove_init fn_mod_remove_process core_exit.sh diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 9eb257907..ad757da6c 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -9,8 +9,6 @@ local commandname="MODS" local commandaction="Mods Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh -mods_core.sh fn_mods_update_init(){ fn_script_log "Entering mods & addons update" @@ -84,6 +82,8 @@ fn_mods_update_loop(){ fn_script_log "Mods update complete." } +check.sh +mods_core.sh fn_mods_update_init fn_mods_update_loop core_exit.sh diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index aead8e714..4295fc478 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -9,68 +9,84 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -## Useful variables # Files and Directories modsdir="${lgsmdir}/mods" modstmpdir="${modsdir}/tmp" extractdir="${modstmpdir}/extract" -modsdatadir="${modsdir}" -modslockfile="installed-mods-listing" -modslockfilefullpath="${modsdatadir}/${modslockfile}" +modsinstalledlist="installed-mods.txt" +modsinstalledlistfullpath="${modsdir}/${modsinstalledlist}" + # Database initialisation mods_list.sh -# Sets some lgsm requirements -fn_lgsm_requirements(){ - # If tmpdir variable doesn't exist, LGSM is too old - if [ -z "${tmpdir}" ]||[ -z "${lgsmdir}" ]; then - fn_print_fail "Your LinuxGSM version is too old." - echo " * Please do a full update, including ${selfname} script." - core_exit.sh - fi -} +## Directory management # Create mods files and directories if it doesn't exist # Assuming the game is already installed as mods_list.sh checked for it. fn_mods_files(){ + # Create mod install directory if [ ! -d "${modinstalldir}" ]; then - fn_script_log_info "Creating mods directory: ${modinstalldir}" - echo "Creating mods directory" + echo "creating mods install directory ${modinstalldir}..." + mkdir -p "${modinstalldir}" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modstmpdir}" + fi sleep 0.5 - mkdir -pv "${modinstalldir}" fi - # Create data/mods directory - if [ ! -d "${modsdatadir}" ]; then - mkdir -p "${modsdatadir}" - fn_script_log "Created ${modsdatadir}" + + # Create lgsm/data/${modsinstalledlist} + if [ ! -f "${modsinstalledlistfullpath}" ]; then + touch "${modsinstalledlistfullpath}" + fn_script_log "Created ${modsinstalledlistfullpath}" fi - # Create lgsm/data/${modslockfile} - if [ ! -f "${modslockfilefullpath}" ]; then - touch "${modslockfilefullpath}" - fn_script_log "Created ${modslockfilefullpath}" +} + +# Create tmp download mod directory +fn_mods_tmpdir(){ + if [ ! -d "${modstmpdir}" ]; then + mkdir -p "${modstmpdir}" + exitcode=$? + echo -ne "creating mod download dir ${modstmpdir}..." + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modstmpdir}" + fi fi } -# Clear mod download directory so that there is only one file in it since we don't know the file name and extention +# Clear contents of mod download directory when finished fn_clear_tmp_mods(){ if [ -d "${modstmpdir}" ]; then - rm -r "${modstmpdir}" - fn_script_log "Clearing mod download directory: ${modstmpdir}" + rm -r "${modstmpdir}"/* + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Clearing mod download directory ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Clearing mod download directory ${modstmpdir}" + fi + fi # Clear temp file list as well - if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then - rm "${modsdatadir}/.removedfiles.tmp" + if [ -f "${modsdir}/.removedfiles.tmp" ]; then + rm "${modsdir}/.removedfiles.tmp" fi } -# Create tmp download mod directory -fn_mods_tmpdir(){ - if [ ! -d "${modstmpdir}" ]; then - mkdir -p "${modstmpdir}" - fn_script_log "Creating mod download directory: ${modstmpdir}" - fi -} +## Download management fn_install_mod_dl_extract(){ fn_fetch_file "${modurl}" "${modstmpdir}" "${modfilename}" # Check if variable is valid checking if file has been downloaded and exists @@ -134,10 +150,10 @@ fn_remove_cfg_files(){ # Then delete the file! rm -r "${extractdir}/${filetoremove}" # Write this file path in a tmp file, to rebuild a full file list since it is rebuilt upon update - if [ ! -f "${modsdatadir}/.removedfiles.tmp" ]; then - touch "${modsdatadir}/.removedfiles.tmp" + if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then + touch "${modsdir}/.removedfiles.tmp" fi - echo "${filetoremove}" >> "${modsdatadir}/.removedfiles.tmp" + echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" fi done fn_print_ok "Allow for preserving ${modprettyname} config files" @@ -148,20 +164,23 @@ fn_remove_cfg_files(){ # Create ${modcommand}-files.txt containing the full extracted file/directory list fn_mod_fileslist(){ echo -ne "building ${modcommand}-files.txt..." - fn_script_log "Building ${modcommand}-files.txt" + sleep 0.5 - # ${modsdatadir}/${modcommand}-files.txt - find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdatadir}"/${modcommand}-files.txt + # ${modsdir}/${modcommand}-files.txt + find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdir}"/${modcommand}-files.txt local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl + fn_script_log_fatal "Building ${modcommand}-files.txt" + core_exit.sh else fn_print_ok_eol_nl + fn_script_log_pass "Building ${modcommand}-files.txt" fi - fn_script_log "Writing file list: ${modsdatadir}/${modcommand}-files.txt}" + fn_script_log "Writing file list ${modsdir}/${modcommand}-files.txt" # Adding removed files if needed - if [ -f "${modsdatadir}/.removedfiles.tmp" ]; then - cat "${modsdatadir}/.removedfiles.tmp" >> "${modsdatadir}"/${modcommand}-files.txt + if [ -f "${modsdir}/.removedfiles.tmp" ]; then + cat "${modsdir}/.removedfiles.tmp" >> "${modsdir}"/${modcommand}-files.txt fi sleep 0.5 } @@ -169,24 +188,26 @@ fn_mod_fileslist(){ # Copy the mod to the destination ${modinstalldir} fn_mod_copy_destination(){ echo -ne "copying ${modprettyname} to ${modinstalldir}..." - fn_script_log "Copying ${modprettyname} to ${modinstalldir}" sleep 0.5 cp -Rf "${extractdir}/." "${modinstalldir}/" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl + fn_script_log_fatal "Copying ${modprettyname} to ${modinstalldir}" else fn_print_ok_eol_nl + fn_script_log_pass "Copying ${modprettyname} to ${modinstalldir}" fi } # Check if the mod is already installed and warn the user fn_mod_already_installed(){ - if [ -f "${modslockfilefullpath}" ]; then - if [ -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then - fn_print_warning_nl "${modprettyname} has already been installed" + if [ -f "${modsinstalledlistfullpath}" ]; then + if [ -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then + fn_print_warning_nl "${modprettyname} is already installed" + fn_script_log_warn "${modprettyname} is already installed" sleep 1 - echo " * Config files, if any, might be overwritten." + echo " * Any configs may be overwritten." while true; do read -e -i "y" -p "Continue? [Y/n]" yn case $yn in @@ -196,24 +217,24 @@ fn_mod_already_installed(){ esac done fi - fn_script_log "${modprettyname} is already installed, overwriting any file." + fn_script_log_info "User selected to continue" fi } # Add the mod to the installed mods list fn_mod_add_list(){ # Append modname to lockfile if it's not already in it - if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then - echo "${modcommand}" >> "${modslockfilefullpath}" - fn_script_log "${modcommand} added to ${modslockfile}" + if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then + echo "${modcommand}" >> "${modsinstalledlistfullpath}" + fn_script_log_info "${modcommand} added to ${modsinstalledlist}" fi } fn_check_files_list(){ # File list must exist and be valid before any operation on it - if [ -f "${modsdatadir}/${modcommand}-files.txt" ]; then + if [ -f "${modsdir}/${modcommand}-files.txt" ]; then # How many lines is the file list - modsfilelistsize="$(cat "${modsdatadir}/${modcommand}-files.txt" | wc -l)" + modsfilelistsize="$(cat "${modsdir}/${modcommand}-files.txt" | wc -l)" # If file list is empty if [ "${modsfilelistsize}" -eq 0 ]; then fn_print_failure "${modcommand}-files.txt is empty" @@ -222,15 +243,15 @@ fn_check_files_list(){ core_exit.sh fi else - fn_print_failure "${modsdatadir}/${modcommand}-files.txt does not exist" - fn_script_log_fatal "${modsdatadir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." + fn_print_failure "${modsdir}/${modcommand}-files.txt does not exist" + fn_script_log_fatal "${modsdir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." core_exit.sh fi } # Apply some post-install fixes to make sure everything will be fine fn_postinstall_tasks(){ - # Prevent sensitive directories from being erased upon uninstall by removing them from: ${modsdatadir}/${modcommand}-files.txt + # Prevent sensitive directories from being erased upon uninstall by removing them from: ${modsdir}/${modcommand}-files.txt # Check file validity fn_check_files_list # Output to the user @@ -248,7 +269,7 @@ fn_postinstall_tasks(){ # Put current file into test variable removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" # Then delete matching line(s)! - sed -i "/^${removefilevar}$/d" "${modsdatadir}/${modcommand}-files.txt" + sed -i "/^${removefilevar}$/d" "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then break @@ -264,8 +285,8 @@ fn_postinstall_tasks(){ # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.txt - sed -i "/^addons\/metamod$/d" "${modsdatadir}/${modcommand}-files.txt" - sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdatadir}/${modcommand}-files.txt" + sed -i "/^addons\/metamod$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdir}/${modcommand}-files.txt" fi } @@ -392,7 +413,7 @@ fn_mod_compatible_test(){ fi } -# Checks if a mod is compatibile for installation +# Checks if a mod is compatible for installation # Provides available mods for installation # Provides commands for mods installation fn_mods_available(){ @@ -439,20 +460,22 @@ fn_mods_show_available(){ echo -e " * ${cyan}${displayedmodcommand}${default}" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" + ((totalmods++)) done # If no mods are found if [ -z "${compatiblemodslist}" ]; then fn_print_fail "No mods are currently available for ${gamename}." core_exit.sh fi + fn_script_log_info "${totalmods} addons/mods are available for install" } # Checks if mods have been installed # Also returns ${installedmodscount} if mods were found fn_check_installed_mods(){ # Count installed mods - if [ -f "${modslockfilefullpath}" ]; then - installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + if [ -f "${modsinstalledlistfullpath}" ]; then + installedmodscount="$(cat "${modsinstalledlistfullpath}" | wc -l)" fi } @@ -463,7 +486,7 @@ fn_mods_exit_if_not_installed(){ # Also returns ${installedmodscount} if mods were found fn_check_installed_mods # If no mods lockfile is found or if it is empty - if [ ! -f "${modslockfilefullpath}" ]||[ -z "${installedmodscount}" ]||[ ${installedmodscount} -le 0 ]; then + if [ ! -f "${modsinstalledlistfullpath}" ]||[ -z "${installedmodscount}" ]||[ ${installedmodscount} -le 0 ]; then fn_print_information_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" fn_script_log_info "No installed mods or addons were found." @@ -477,9 +500,9 @@ fn_mods_available_commands_from_installed(){ # Set/reset variables installedmodsline="1" installedmodslist=() - # Loop through every line of the installed mods list ${modslockfilefullpath} + # Loop through every line of the installed mods list ${modsinstalledlistfullpath} while [ ${installedmodsline} -le ${installedmodscount} ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" # Get mod info to make sure mod exists fn_mod_get_info_from_command # Add the mod to available commands @@ -487,6 +510,9 @@ fn_mods_available_commands_from_installed(){ # Increment line check let installedmodsline=installedmodsline+1 done + if [ -n "${totalmods}" ] ;then + fn_script_log_info "${totalmods} addons/mods are already installed" + fi } # Displays a detailed list of installed mods @@ -542,6 +568,7 @@ fn_installed_mods_light_list(){ fn_mod_get_info_from_command # Display simple mod info to the user echo -e " * \e[1m${green}${modcommand}${default}${default}" + ((totalmodsinstalled++)) done echo "" fi @@ -577,8 +604,6 @@ fn_installed_mods_update_list(){ else echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" fi - ((totalmodsinstalled++)) - fn_script_log_info "${totalmodsinstalled} are already installed" done } @@ -608,7 +633,7 @@ fn_mod_get_info_from_command(){ break fi done - fn_script_log_info "${totalmods} are available for install" + # What happens if mod is not found if [ "${modinfocommand}" == "0" ]; then fn_script_log_error "Could not find information for ${currentmod}" @@ -618,7 +643,6 @@ fn_mod_get_info_from_command(){ fi } -fn_lgsm_requirements fn_mods_scrape_urls fn_mods_info fn_mods_available diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 298da3ce1..73584f3dd 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -12,8 +12,6 @@ local commandname="MODS" local commandaction="List Mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -check.sh - ## Useful variables # Separator name modseparator="MOD" @@ -64,7 +62,7 @@ fn_mods_info(){ # Get a proper URL for mods that don't provide a good one (optional) fn_mods_scrape_urls(){ - fn_script_log_info "retrieving latest mods URLs" + fn_script_log_info "Retrieving latest mods URLs" # Metamod metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" From 939854cfe093779caa0d6b740cb5b8fd79cd5416 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 20:11:23 -0600 Subject: [PATCH 231/325] MTA updater --- lgsm/functions/command_update.sh | 4 +- lgsm/functions/core_functions.sh | 5 + lgsm/functions/core_getopt.sh | 9 +- lgsm/functions/install_server_files.sh | 2 + lgsm/functions/update_mta.sh | 149 +++++++++++++++++++++++++ 5 files changed, 165 insertions(+), 4 deletions(-) create mode 100644 lgsm/functions/update_mta.sh diff --git a/lgsm/functions/command_update.sh b/lgsm/functions/command_update.sh index 13fff9e90..ca82f541a 100644 --- a/lgsm/functions/command_update.sh +++ b/lgsm/functions/command_update.sh @@ -20,7 +20,9 @@ elif [ "${engine}" == "lwjgl2" ]; then elif [ "${gamename}" == "Mumble" ]; then update_mumble.sh elif [ "${gamename}" == "Factorio" ]; then - update_factorio.sh + update_factorio.sh +elif [ "$Pgamename" == "Multi Theft Auto" ]; then + update_mta.sh else update_steamcmd.sh fi diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index df8b4980c..39737640c 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -462,6 +462,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +update_mta.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + update_factorio.sh(){ functionfile="${FUNCNAME}" fn_fetch_function diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index bc18e3292..721d317e0 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -350,6 +350,8 @@ case "${getopt}" in command_stop.sh;; r|restart) command_restart.sh;; + u|update) + command_update.sh;; uf|update-functions) command_update_functions.sh;; m|monitor) @@ -394,6 +396,7 @@ case "${getopt}" in echo -e "${blue}start\t${default}st |Start the server." echo -e "${blue}stop\t${default}sp |Stop the server." echo -e "${blue}restart\t${default}r |Restart the server." + echo -e "${blue}update\t${default}u |Checks and applies updates from linux.mtasa.com." echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded." echo -e "${blue}monitor\t${default}m |Checks that the server is running." echo -e "${blue}test-alert\t${default}ta |Sends test alert." @@ -845,7 +848,7 @@ elif [ "${gamename}" == "Multi Theft Auto" ]; then # Mumble elif [ "${gamename}" == "Mumble" ]; then fn_getopt_mumble -# Teamspeak 3 +# Teamspeak 3 elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_getopt_teamspeak3 # Unreal 2 Engine @@ -855,14 +858,14 @@ elif [ "${engine}" == "unreal2" ]; then else fn_getopt_unreal2 fi -# Unreal Engine +# Unreal Engine elif [ "${engine}" == "unreal" ]; then fn_getopt_unreal # Generic 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}" == "QuakeWorld" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fn_getopt_generic_no_update elif [ "${gamename}" == "Factorio" ]; then - fn_getopt_generic_update_no_steam + fn_getopt_generic_update_no_steam else fn_getopt_generic fi diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index fff0e923d..8d8d8d608 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -131,6 +131,8 @@ elif [ "${gamename}" == "Minecraft" ]; then update_minecraft.sh elif [ "${gamename}" == "Mumble" ]; then update_mumble.sh +elif [ "${gamename}" == "Multi Theft Auto" ]; then + update_mta.sh elif [ "${gamename}" == "Factorio" ]; then update_factorio.sh install_factorio_save.sh diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh new file mode 100644 index 000000000..0268c5d0e --- /dev/null +++ b/lgsm/functions/update_mta.sh @@ -0,0 +1,149 @@ +#!/bin/bash +# LGSM update_mta.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Handles updating of Multi Theft Auto servers. + +local commandname="UPDATE" +local commandaction="Update" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +fn_update_mta_dl(){ + fn_fetch_file "http://linux.mtasa.com/dl/${NUM_VERSION}/multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" + fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" "${tmpdir}" + echo -e "copying to ${filesdir}...\c" + fn_script_log "Copying to ${filesdir}" + cp -R "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}.tar.gz"* "${filesdir}" + local exitcode=$? + if [ "${exitcode}" == "0" ]; then + fn_print_ok_eol_nl + else + fn_print_fail_eol_nl + fi +} + +fn_update_mta_currentbuild(){ + # Gets current build info + # Checks if current build info is available. If it fails, then a server restart will be forced to generate logs. + if [ ! -f "${consolelogdir}/${servicename}-console.log" ]; then + fn_print_error "Checking for update: linux.mtasa.com" + sleep 1 + fn_print_error_nl "Checking for update: linux.mtasa.com: No logs with server version found" + fn_script_log_error "Checking for update: linux.mtasa.com: No logs with server version found" + sleep 1 + fn_print_info_nl "Checking for update: linux.mtasa.com: Forcing server restart" + fn_script_log_info "Checking for update: linux.mtasa.com: Forcing server restart" + sleep 1 + exitbypass=1 + command_stop.sh + exitbypass=1 + command_start.sh + sleep 1 + # Check again and exit on failure. + if [ ! -f "${consolelogdir}/${servicename}-console.log" ]; then + fn_print_fail_nl "Checking for update: linux.mtasa.com: Still No logs with server version found" + fn_script_log_fatal "Checking for update: linux.mtasa.com: Still No logs with server version found" + core_exit.sh + fi + fi + + # Get current build from logs + currentbuild=$(awk -F"= Multi Theft Auto: San Andreas v" '{print $2}' "${consolelogdir}"/"${servicename}"-console.log | awk '{print $1}') + if [ -z "${currentbuild}" ]; then + fn_print_error_nl "Checking for update: linux.mtasa.com: Current build version not found" + fn_script_log_error "Checking for update: linux.mtasa.com: Current build version not found" + sleep 1 + fn_print_info_nl "Checking for update: linux.mtasa.com: Forcing server restart" + fn_script_log_info "Checking for update: linux.mtasa.com: Forcing server restart" + exitbypass=1 + command_stop.sh + exitbypass=1 + command_start.sh + currentbuild=$(awk -F"= Multi Theft Auto: San Andreas v" '{print $2}' "${consolelogdir}"/"${servicename}"-console.log | awk '{print $1}') + if [ -z "${currentbuild}" ]; then + fn_print_fail_nl "Checking for update: linux.mtasa.com: Current build version still not found" + fn_script_log_fatal "Checking for update: linux.mtasa.com: Current build version still not found" + core_exit.sh + fi + fi +} + +fn_mta_getServerVersion() +{ + fn_fetch_file "https://raw.githubusercontent.com/multitheftauto/mtasa-blue/master/Server/version.h" "${tmpdir}" # we need to find latest stable version here + local MAJOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAJOR" | awk '{ print $3 }' | sed 's/\r//g')" + local MINOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MINOR" | awk '{ print $3 }' | sed 's/\r//g')" + local MAINTENANCE_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAINTENANCE" | awk '{ print $3 }' | sed 's/\r//g')" + NUM_VERSION="${MAJOR_VERSION}${MINOR_VERSION}${MAINTENANCE_VERSION}" + FUL_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${MAINTENANCE_VERSION}" + rm -f "${tmpdir}/version.h" +} + +fn_update_mta_compare(){ + # Removes dots so if can compare version numbers + currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]') + + if [ "${currentbuilddigit}" -ne "${NUM_VERSION}" ]; then + echo -e "\n" + echo -e "Update available:" + sleep 1 + echo -e " Current build: ${red}${currentbuild} ${default}" + echo -e " Available build: ${green}${FULL_VERSION} ${default}" + echo -e "" + sleep 1 + echo "" + echo -en "Applying update.\r" + sleep 1 + echo -en "Applying update..\r" + sleep 1 + echo -en "Applying update...\r" + sleep 1 + echo -en "\n" + fn_script_log "Update available" + fn_script_log "Current build: ${currentbuild}" + fn_script_log "Available build: ${FULL_VERSION}" + fn_script_log "${currentbuild} > ${FULL_VERSION}" + + unset updateonstart + + check_status.sh + if [ "${status}" == "0" ]; then + fn_update_mta_dl + exitbypass=1 + command_start.sh + exitbypass=1 + command_stop.sh + else + exitbypass=1 + command_stop.sh + fn_update_mta_dl + exitbypass=1 + command_start.sh + fi + alert="update" + alert.sh + else + echo -e "\n" + echo -e "No update available:" + echo -e " Current version: ${green}${currentbuild}${default}" + echo -e " Available version: ${green}${FULL_VERSION}${default}" + echo -e "" + fn_print_ok_nl "No update available" + fn_script_log_info "Current build: ${currentbuild}" + fn_script_log_info "Available build: ${FULL_VERSION}" + fi +} + + +if [ "${installer}" == "1" ]; then + fn_mta_getServerVersion + fn_update_mta_dl +else + # Checks for server update from linux.mtasa.com using the github repo. + fn_print_dots "Checking for update: linux.mtasa.com" + fn_script_log_info "Checking for update: linux.mtasa.com" + sleep 1 + fn_update_mta_currentbuild + fn_mta_getServerVersion + fn_update_mta_compare +fi From dd122132e0a231c491e5166acc3efc3c1480af7f Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 20:14:38 -0600 Subject: [PATCH 232/325] File name for the fetch --- lgsm/functions/update_mta.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 0268c5d0e..ce7824dc6 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -70,7 +70,7 @@ fn_update_mta_currentbuild(){ fn_mta_getServerVersion() { - fn_fetch_file "https://raw.githubusercontent.com/multitheftauto/mtasa-blue/master/Server/version.h" "${tmpdir}" # we need to find latest stable version here + fn_fetch_file "https://raw.githubusercontent.com/multitheftauto/mtasa-blue/master/Server/version.h" "${tmpdir}" "version.h" # we need to find latest stable version here local MAJOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAJOR" | awk '{ print $3 }' | sed 's/\r//g')" local MINOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MINOR" | awk '{ print $3 }' | sed 's/\r//g')" local MAINTENANCE_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAINTENANCE" | awk '{ print $3 }' | sed 's/\r//g')" From d3ebec1514d7b5602c07e999f50b3b4de617a0c6 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 20:31:43 -0600 Subject: [PATCH 233/325] No longer needed as this is handled in the update file --- lgsm/functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index 7596c4789..7355c840c 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -58,7 +58,7 @@ fn_dl_extract(){ mime=$(file -b --mime-type "${filedir}/${filename}") if [ "${mime}" == "application/gzip" ]||[ "${mime}" == "application/x-gzip" ]; then - tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}" --strip-components=1) + tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}") elif [ "${mime}" == "application/x-bzip2" ]; then tarcmd=$(tar -jxf "${filedir}/${filename}" -C "${extractdir}") elif [ "${mime}" == "application/zip" ]; then From 96b059a5b736dcc712f5b56ec9c6aceb20729f80 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 20:31:53 -0600 Subject: [PATCH 234/325] Directory changes --- lgsm/functions/update_mta.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index ce7824dc6..76e31f451 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -9,11 +9,12 @@ local commandaction="Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_update_mta_dl(){ - fn_fetch_file "http://linux.mtasa.com/dl/${NUM_VERSION}/multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" - fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" "${tmpdir}" + fn_fetch_file "http://linux.mtasa.com/dl/${NUM_VERSION}/multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" "${tmpdir}" "multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" + mkdir "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}" + fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}" echo -e "copying to ${filesdir}...\c" fn_script_log "Copying to ${filesdir}" - cp -R "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}.tar.gz"* "${filesdir}" + cp -R "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}/"* "${filesdir}" local exitcode=$? if [ "${exitcode}" == "0" ]; then fn_print_ok_eol_nl From fbac3e7c42805e96645efc142e4f1effb7274ea0 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 20:33:34 -0600 Subject: [PATCH 235/325] Typo --- lgsm/functions/command_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_update.sh b/lgsm/functions/command_update.sh index ca82f541a..dd2206f00 100644 --- a/lgsm/functions/command_update.sh +++ b/lgsm/functions/command_update.sh @@ -21,7 +21,7 @@ elif [ "${gamename}" == "Mumble" ]; then update_mumble.sh elif [ "${gamename}" == "Factorio" ]; then update_factorio.sh -elif [ "$Pgamename" == "Multi Theft Auto" ]; then +elif [ "${gamename}" == "Multi Theft Auto" ]; then update_mta.sh else update_steamcmd.sh From c0f9078f063d4fe5be474b8d0c00b3f16d0acbd5 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 20:35:16 -0600 Subject: [PATCH 236/325] =?UTF-8?q?Don=E2=80=99t=20attempt=20to=20change?= =?UTF-8?q?=20server=20name=20vars?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lgsm/functions/install_config.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 3bb99da89..4a0cf13b2 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -367,7 +367,6 @@ elif [ "${gamename}" == "Multi Theft Auto" ]; then array_configs+=( acl.xml mtaserver.conf vehiclecolors.conf ) fn_fetch_default_config fn_default_config_remote - fn_set_config_vars elif [ "${gamename}" == "Mumble" ]; then gamedirname="Mumble" array_configs+=( murmur.ini ) From d739b9e2c3d785d3053e435c43c2a63da7cfd795 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 20:51:20 -0600 Subject: [PATCH 237/325] Another directory fix --- lgsm/functions/update_mta.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 76e31f451..a7623d4cb 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -14,7 +14,7 @@ fn_update_mta_dl(){ fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}" echo -e "copying to ${filesdir}...\c" fn_script_log "Copying to ${filesdir}" - cp -R "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}/"* "${filesdir}" + cp -R "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}/multitheftauto_linux_x64-${FUL_VERSION}"* "${filesdir}" local exitcode=$? if [ "${exitcode}" == "0" ]; then fn_print_ok_eol_nl From e5176ba57dbb9fc42a44e860bf5a35624f8fbec1 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 21:05:20 -0600 Subject: [PATCH 238/325] Forgot a slash.. --- lgsm/functions/update_mta.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index a7623d4cb..099344b71 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -14,7 +14,7 @@ fn_update_mta_dl(){ fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}" echo -e "copying to ${filesdir}...\c" fn_script_log "Copying to ${filesdir}" - cp -R "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}/multitheftauto_linux_x64-${FUL_VERSION}"* "${filesdir}" + cp -R "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}/multitheftauto_linux_x64-${FUL_VERSION}/"* "${filesdir}" local exitcode=$? if [ "${exitcode}" == "0" ]; then fn_print_ok_eol_nl From 29073d4dbb4b8523da86f12131e94f416ecba732 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 21:07:55 -0600 Subject: [PATCH 239/325] Fix for where LGSM looks for the libmysqlclient file --- lgsm/functions/fix_mta.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/fix_mta.sh b/lgsm/functions/fix_mta.sh index e63972e50..6bf11dbc9 100644 --- a/lgsm/functions/fix_mta.sh +++ b/lgsm/functions/fix_mta.sh @@ -8,7 +8,7 @@ local commandname="FIX" local commandaction="Fix" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -if [ ! -f /usr/lib/libmysqlclient.so.16 ]; then +if [ ! -f "${lgsmdir}/lib/libmysqlclient.so.16" ]; then fixname="libmysqlclient16 install" fn_fix_msg_start fn_print_warn_nl "libmysqlclient16 not installed. Installing.." From eb1c9b7854c39e3ce5571b021de8d93f6bc6e04e Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 21:13:07 -0600 Subject: [PATCH 240/325] Better naming --- lgsm/functions/update_mta.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 099344b71..0bc8a7d53 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -9,12 +9,12 @@ local commandaction="Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_update_mta_dl(){ - fn_fetch_file "http://linux.mtasa.com/dl/${NUM_VERSION}/multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" "${tmpdir}" "multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" - mkdir "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}" - fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FUL_VERSION}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}" + fn_fetch_file "http://linux.mtasa.com/dl/${NUM_VERSION}/multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" "${tmpdir}" "multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" + mkdir "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}" + fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}" echo -e "copying to ${filesdir}...\c" fn_script_log "Copying to ${filesdir}" - cp -R "${tmpdir}/multitheftauto_linux_x64-${FUL_VERSION}/multitheftauto_linux_x64-${FUL_VERSION}/"* "${filesdir}" + cp -R "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}/multitheftauto_linux_x64-${FULL_VERSION}/"* "${filesdir}" local exitcode=$? if [ "${exitcode}" == "0" ]; then fn_print_ok_eol_nl @@ -76,7 +76,7 @@ fn_mta_getServerVersion() local MINOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MINOR" | awk '{ print $3 }' | sed 's/\r//g')" local MAINTENANCE_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAINTENANCE" | awk '{ print $3 }' | sed 's/\r//g')" NUM_VERSION="${MAJOR_VERSION}${MINOR_VERSION}${MAINTENANCE_VERSION}" - FUL_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${MAINTENANCE_VERSION}" + FULL_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${MAINTENANCE_VERSION}" rm -f "${tmpdir}/version.h" } From 475a2089438d2151a3ce9c96cc4804da4fdebd76 Mon Sep 17 00:00:00 2001 From: Braunson Date: Sun, 22 Jan 2017 21:21:41 -0600 Subject: [PATCH 241/325] No longer needed, handled in the update file --- lgsm/functions/install_server_files.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 8d8d8d608..dd79d9150 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -39,8 +39,6 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.com/UnrealTournament3/UT3-linux-server-2.1.tar.bz2"; filedir="${tmpdir}"; filename="UT3-linux-server-2.1.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="2527437b46f1b47f20228d27d72395a6" elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; filedir="${tmpdir}"; filename="enemy-territory.260b.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="f833f514bfcdd46b42c111f83350c5a7" - elif [ "${gamename}" == "Multi Theft Auto" ]; then - fileurl="https://linux.mtasa.com/dl/153/multitheftauto_linux_x64-1.5.3.tar.gz"; filedir="${tmpdir}"; filename="multitheftauto_linux_x64-1.5.3.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="77caf91fe280877a8d21f8046d5f42ba" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From bd1dabc19403908a18594a0a1e3a19839bca84e6 Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 23 Jan 2017 14:49:08 -0600 Subject: [PATCH 242/325] Add a contributing guide This file will give new pull requests a warning to adhere to the projects guidelines and is a good reminder of our standards. https://help.github.com/articles/setting-guidelines-for-repository-contributors/ This is related to issue #1624 Feel free to suggest edits. --- CONTRIBUTING.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..28d8d3dac --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,40 @@ +# How to contribute + +I'm really glad you're reading this, because if you are then you have shown an interest in helping make LinuxGSM great. + +If you haven't already, come find us on [Discord](https://gameservermanagers.com/discord). From there you will have contact with other contributers of the project. We want you working on things you're excited about. + +Here are some important resources: + + * [Issues Page](https://github.com/GameServerManagers/LinuxGSM/issues) provides a list of areas that could use some work, + * [Developing LGSM](https://github.com/GameServerManagers/LinuxGSM/wiki/Developing-LGSM) gives a detailed guide on developing LGSM, + * [LGSM Exit Codes](https://github.com/GameServerManagers/LinuxGSM/wiki/LGSM-Exit-Codes) describes and gives an explanation for exit codes, + * [gsquery](https://github.com/GameServerManagers/LinuxGSM/wiki/gsquery.py) describes the uses of the gsquery.py file, and + * [Branching](https://github.com/GameServerManagers/LinuxGSM/wiki/Branching) is our final guide to submitting changes. + +## Testing + +Please make sure all the code you write is working properly **before** you create a pull request. Information on debugging can be found in the following document: +[Debug Command](https://github.com/GameServerManagers/LinuxGSM/wiki/debug) +[Debugging your code](https://github.com/GameServerManagers/LinuxGSM/wiki/Developing-LGSM#testing-and-debugging-your-code) + +## Submitting changes + +Please send a [GitHub Pull Request to LinuxGSM](https://github.com/GameServerManagers/LinuxGSM/pull/new/develop) with a clear list of what you've done (read more about [pull requests](https://help.github.com/articles/about-pull-requests/)). Please follow our coding conventions (below) and make sure all of your commits are atomic (one feature per commit). + +Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this: + + $ git commit -m "A brief summary of the commit + > + > A paragraph describing what changed and its impact." +This will help us in understanding your code and determining where problems may arise. + +## Coding conventions + +Start reading our code and you'll get the hang of it. Explore how functions are organized and you'll see how we strive for readable code. + +Please give the following document a read and adjust your code according to its specifications. +[Syntax & Coding Conventions](https://github.com/GameServerManagers/LinuxGSM/wiki/Syntax-&-Conventions) + + + From bf1dc5b71d2068575cbca01c25812023a64c0e5e Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 23 Jan 2017 15:43:11 -0600 Subject: [PATCH 243/325] Update based on code review --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 28d8d3dac..6fe85bae6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ -# How to contribute +# How to contribute to LinuxGSM -I'm really glad you're reading this, because if you are then you have shown an interest in helping make LinuxGSM great. +We are really glad you're reading this, because if you are then you have shown an interest in helping make LinuxGSM great. If you haven't already, come find us on [Discord](https://gameservermanagers.com/discord). From there you will have contact with other contributers of the project. We want you working on things you're excited about. From 1272cb42c60f4788345d84e667efdcbbbb121eaa Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 23 Jan 2017 15:57:06 -0600 Subject: [PATCH 244/325] Updated to add developer commands --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6fe85bae6..edb8ebf50 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ Here are some important resources: ## Testing Please make sure all the code you write is working properly **before** you create a pull request. Information on debugging can be found in the following document: -[Debug Command](https://github.com/GameServerManagers/LinuxGSM/wiki/debug) +[Developer Commands](https://github.com/GameServerManagers/LinuxGSM/wiki/Developer-Commands) [Debugging your code](https://github.com/GameServerManagers/LinuxGSM/wiki/Developing-LGSM#testing-and-debugging-your-code) ## Submitting changes From 7152d821c043722423afda967d2800fb32e9ae73 Mon Sep 17 00:00:00 2001 From: Chaos Date: Mon, 23 Jan 2017 20:53:44 -0600 Subject: [PATCH 245/325] Support forced updates, sometimes MTA releases versions lower than maintenance versions that cannot otherwise be detected. --- lgsm/functions/core_getopt.sh | 4 ++++ lgsm/functions/update_mta.sh | 12 +++++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 721d317e0..42ee3d44e 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -352,6 +352,9 @@ case "${getopt}" in command_restart.sh;; u|update) command_update.sh;; + fu|force-update|update-restart) + forceupdate=1; + command_update.sh;; uf|update-functions) command_update_functions.sh;; m|monitor) @@ -397,6 +400,7 @@ case "${getopt}" in echo -e "${blue}stop\t${default}sp |Stop the server." echo -e "${blue}restart\t${default}r |Restart the server." echo -e "${blue}update\t${default}u |Checks and applies updates from linux.mtasa.com." + echo -e "${blue}force-update\t${default}fu |Bypasses the check and applies updates from linux.mtasa.com." echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded." echo -e "${blue}monitor\t${default}m |Checks that the server is running." echo -e "${blue}test-alert\t${default}ta |Sends test alert." diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 0bc8a7d53..365dae131 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -84,9 +84,15 @@ fn_update_mta_compare(){ # Removes dots so if can compare version numbers currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]') - if [ "${currentbuilddigit}" -ne "${NUM_VERSION}" ]; then + if [ "${currentbuilddigit}" -ne "${NUM_VERSION}" ]||[ "${forceupdate}" == "1" ]; then + if [ "${forceupdate}" == "1" ]; then + # forceupdate bypasses checks, useful for small build changes + mta_update_string="forced" + else + mta_update_string="available" + fi echo -e "\n" - echo -e "Update available:" + echo -e "Update ${mta_update_string}:" sleep 1 echo -e " Current build: ${red}${currentbuild} ${default}" echo -e " Available build: ${green}${FULL_VERSION} ${default}" @@ -100,7 +106,7 @@ fn_update_mta_compare(){ echo -en "Applying update...\r" sleep 1 echo -en "\n" - fn_script_log "Update available" + fn_script_log "Update ${mta_update_string}" fn_script_log "Current build: ${currentbuild}" fn_script_log "Available build: ${FULL_VERSION}" fn_script_log "${currentbuild} > ${FULL_VERSION}" From 3e17bc1daa6098022ccc41e5dbac732fcb41fb9f Mon Sep 17 00:00:00 2001 From: Chaos Date: Wed, 25 Jan 2017 08:41:59 -0600 Subject: [PATCH 246/325] Added a note about making an issue for features you work on --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index edb8ebf50..a90acec99 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,8 @@ We are really glad you're reading this, because if you are then you have shown a If you haven't already, come find us on [Discord](https://gameservermanagers.com/discord). From there you will have contact with other contributers of the project. We want you working on things you're excited about. +Before working on a project we recommend that you create a issue in regards to the issue/feature. This will prevent duplicates while you work on the feature. If an issue already exists, make note that you are working on it so nobody else wastes their time working on the same project at the same time! + Here are some important resources: * [Issues Page](https://github.com/GameServerManagers/LinuxGSM/issues) provides a list of areas that could use some work, From f1dbdd6cc61565236a7569737c4d5b1302cc4ce4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 20:00:42 +0000 Subject: [PATCH 247/325] Major re-organise This is a major sort out of the new functions. To simplify and make it easier to follow the code. All functionality remains. Possible bugs in this that will be resolved after testing --- lgsm/functions/command_mods_install.sh | 160 ++++--- lgsm/functions/command_mods_remove.sh | 215 ++++----- lgsm/functions/command_mods_update.sh | 168 ++++--- lgsm/functions/mods_core.sh | 613 +++++++++---------------- lgsm/functions/mods_list.sh | 104 ++--- 5 files changed, 568 insertions(+), 692 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index d15250594..fc6f78c9e 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -9,67 +9,113 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -fn_mods_install_init(){ - fn_print_header - # Display installed mods - fn_installed_mods_light_list +check.sh +mods_core.sh + +fn_print_header + +# exits if no mods installed +fn_mods_check_installed - echo "Available addons/mods" +# Displays a list of installed mods +fn_mods_installed_list +if [ ${installedmodscount} -gt 0 ]; then + echo "Installed addons/mods" echo "=================================" - # Display available mods from mods_list.sh - fn_mods_show_available - echo "" - # Keep prompting as long as the user input doesn't correspond to an available mod - while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): " - read -r usermodselect - # Exit if user says exit or abort - if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then - core_exit.sh - # Supplementary output upon invalid user input - elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then - fn_print_error2_nl "${usermodselect} is not a valid addon/mod." - fi + # Go through all available commands, get details and display them to the user + for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do + # Current mod is the "llindex" value of the array we're going through + currentmod="${installedmodslist[llindex]}" + fn_mod_get_info + # Display mod info to the user + echo -e " * \e[1m${green}${modcommand}${default}${default}" + ((totalmodsinstalled++)) done echo "" - echo "Installing ${modprettyname}" - echo "=================================" - fn_script_log_info "${modprettyname} selected for install" - # Gives a pretty name to the user and get all mod info - currentmod="${usermodselect}" -} +fi -# Run all required operation -fn_mod_installation(){ - # Get mod info - fn_mod_get_info_from_command - # Check if mod is already installed - fn_mod_already_installed - # Check and create required files - fn_mods_files - # Clear lgsm/tmp/mods dir if exists then recreate it - fn_clear_tmp_mods - fn_mods_tmpdir - # Download & extract mod - fn_install_mod_dl_extract - # Convert to lowercase if needed - fn_mod_lowercase - # Build a file list - fn_mod_fileslist - # Copying to destination - fn_mod_copy_destination - # Ending with installation routines - fn_mod_add_list - # Post install fixes - fn_postinstall_tasks - # Cleaning - fn_clear_tmp_mods - echo "${modprettyname} installed" - fn_script_log_pass "${modprettyname} installed." -} +echo "Available addons/mods" +echo "=================================" +# Display available mods from mods_list.sh +# Set and reset vars +compatiblemodslistindex=0 +# As long as we're within index values +while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do + # Set values for convenience + displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" + displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" + displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" + displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" + # Output mods to the user + echo -e "\e[1m${displayedmodname}${default} - ${displayedmoddescription} - ${displayedmodsite}" + echo -e " * ${cyan}${displayedmodcommand}${default}" + # Increment index from the amount of values we just displayed + let "compatiblemodslistindex+=4" + ((totalmods++)) +done + +# If no mods are available for a specific game +if [ -z "${compatiblemodslist}" ]; then + fn_print_fail "No mods are currently available for ${gamename}." + fn_script_log_info "No mods are currently available for ${gamename}." + core_exit.sh +fi +fn_script_log_info "${totalmods} addons/mods are available for install" + +## User selects a mod +echo "" +while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do + echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): " + read -r usermodselect + # Exit if user says exit or abort + if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then + core_exit.sh + # Supplementary output upon invalid user input + elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then + fn_print_error2_nl "${usermodselect} is not a valid addon/mod." + fi +done +currentmod="${usermodselect}" + +echo "" +echo "Installing ${modprettyname}" +echo "=================================" +fn_script_log_info "${modprettyname} selected for install" + +# Check if the mod is already installed and warn the user +if [ -f "${modsinstalledlistfullpath}" ]; then + if [ -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then + fn_print_warning_nl "${modprettyname} is already installed" + fn_script_log_warn "${modprettyname} is already installed" + sleep 1 + echo " * Any configs may be overwritten." + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; core_exit.sh;; + * ) echo "Please answer yes or no.";; + esac + done + fi +fn_script_log_info "User selected to continue" +fi + +## Installation + +fn_mod_get_info +fn_mod_already_installed +fn_create_mods_dir +fn_mods_clear_tmp_dir +fn_mods_create_tmp_dir +fn_mod_install_files +fn_mod_lowercase +fn_mod_create_filelist +fn_mod_copy_destination +fn_mod_add_list +fn_mod_tidy_files_list +fn_mods_clear_tmp_dir +echo "${modprettyname} installed" +fn_script_log_pass "${modprettyname} installed." -check.sh -mods_core.sh -fn_mods_install_init -fn_mod_installation core_exit.sh \ No newline at end of file diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 6c8fdf0bb..e0b1623d1 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -9,114 +9,123 @@ local commandname="MODS" local commandaction="addons/mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +check.sh +mods_core.sh +fn_mods_check_installed +fn_print_header +echo "Remove addons/mods" +echo "=================================" -fn_mods_remove_init(){ - fn_print_header - echo "Remove addons/mods" - echo "=================================" - # A simple function to exit if no mods were installed - # Also returns ${installedmodscount} if mods were found - fn_mods_exit_if_not_installed - # Displays installed addons to the user - fn_installed_mods_medium_list - echo "" - # Keep prompting as long as the user input doesn't correspond to an available mod - while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do - echo -en "Enter a ${cyan}mod${default} to ${red}remove${default} (or exit to abort): " - read -r usermodselect - # Exit if user says exit or abort - if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then - core_exit.sh - # Supplementary output upon invalid user input - elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then - fn_print_error2_nl "${usermodselect} is not a valid addon/mod." - fi - done - fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}." - echo " * Any custom files/configuration will be removed." - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; exit;; - * ) echo "Please answer yes or no.";; - esac - done - # Gives a pretty name to the user and get all mod info - currentmod="${usermodselect}" - fn_mod_get_info_from_command - # Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize}) - fn_check_files_list +## Displays list of installed mods +# Generates list to display to user +fn_mods_installed_list +for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do + # Current mod is the "mlindex" value of the array we are going through + currentmod="${installedmodslist[mlindex]}" + # Get mod info + fn_mod_get_info + # Display mod info to the user + echo -e "${cyan}${modcommand}${default} - \e[1m${modprettyname}${default} - ${moddescription}" +done -} +echo "" +# Keep prompting as long as the user input doesn't correspond to an available mod +while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do + echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): " + read -r usermodselect + # Exit if user says exit or abort + if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then + core_exit.sh + # Supplementary output upon invalid user input + elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then + fn_print_error2_nl "${usermodselect} is not a valid addon/mod." + fi +done -# Uninstall the mod -fn_mod_remove_process(){ - fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" - echo -e "removing ${modprettyname}" - echo -e "* ${modsfilelistsize} files to be removed" - echo -e "* location: ${modinstalldir}" - sleep 1 - # Go through every file and remove it - modfileline="1" - tput sc - while [ "${modfileline}" -le "${modsfilelistsize}" ]; do - # Current line defines current file to remove - currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" - # If file or directory exists, then remove it - fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" - if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then - rm -rf "${modinstalldir}/${currentfileremove}" - local exitcode=$? - fi - tput rc; tput el - printf "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize} : ${currentfileremove}..." +fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}." +echo " * Any custom files/configuration will be removed." +while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; exit;; + * ) echo "Please answer yes or no.";; +esac +done - ((totalfileswc++)) - let modfileline=modfileline+1 - done - tput rc; tput ed; - echo -ne "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize}..." - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl - fi - sleep 0.5 - # Remove file list - echo -en "removing ${modcommand}-files.txt..." - sleep 0.5 - fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" - rm -rf "${modsdatadir}/${modcommand}-files.txt" - local exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl - fi - # Remove from installed mods list - echo -en "removing ${modcommand} from ${modslockfile}..." - sleep 0.5 - fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" - sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" - # Post install tasks to solve potential issues - local exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl +currentmod="${usermodselect}" +fn_mod_get_info +fn_check_mod_files_list + +# Uninstall the mod +fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" +echo -e "removing ${modprettyname}" +echo -e "* ${modsfilelistsize} files to be removed" +echo -e "* location: ${modinstalldir}" +sleep 1 +# Go through every file and remove it +modfileline="1" +tput sc +while [ "${modfileline}" -le "${modsfilelistsize}" ]; do + # Current line defines current file to remove + currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" + # If file or directory exists, then remove it + fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" + if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then + rm -rf "${modinstalldir}/${currentfileremove}" + local exitcode=$? fi - fn_postuninstall_tasks - echo "${modprettyname} removed" - fn_script_log "${modprettyname} removed" -} + tput rc; tput el + printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." + ((modfileline++)) +done +tput rc; tput ed; +echo -ne "removing ${modprettyname} ${modfileline} / ${modsfilelistsize}..." +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi +sleep 0.5 + +# Remove file list +echo -en "removing ${modcommand}-files.txt..." +sleep 0.5 +fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" +rm -rf "${modsdatadir}/${modcommand}-files.txt" +local exitcode=$? +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi + +# Remove mods from installed mods list +echo -en "removing ${modcommand} from ${modslockfile}..." +sleep 0.5 +fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" +sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" +local exitcode=$? +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi + +# Oxide fix +# Oxide replaces server files, so a validate is required after uninstall +if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then + fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" + fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" + exitbypass="1" + command_validate.sh + unset exitbypass +fi +echo "${modprettyname} removed" +fn_script_log "${modprettyname} removed" -check.sh -mods_core.sh -fn_mods_remove_init -fn_mod_remove_process core_exit.sh diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index ad757da6c..123e2b4e8 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -9,81 +9,107 @@ local commandname="MODS" local commandaction="Mods Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +check.sh +mods_core.sh -fn_mods_update_init(){ - fn_script_log "Entering mods & addons update" - echo "=================================" - echo "${gamename} mods & addons update" - # A simple function to exit if no mods were installed - # Also returns ${installedmodscount} if mods were found - fn_mods_exit_if_not_installed - echo "" - fn_print_information_nl "${installedmodscount} mods or addons will be updated:" - fn_script_log_info "${installedmodscount} mods or addons will be updated" - # Display a list of installed addons - fn_installed_mods_update_list -} +fn_print_header -# Recursively list all installed mods and apply update -fn_mods_update_loop(){ - # Reset line value - installedmodsline="1" - while [ $installedmodsline -le $installedmodscount ]; do - # Current line defines current mod command - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" - if [ -n "${currentmod}" ]; then - # Get mod info - fn_mod_get_info_from_command - # Don't update the mod if it's policy is to "NOUPDATE" - if [ "${modkeepfiles}" == "NOUPDATE" ]; then - fn_print_info "${modprettyname} won't be updated to preserve custom files" - fn_script_log "${modprettyname} won't be updated to preserve custom files." - let installedmodsline=installedmodsline+1 - else - echo "" - fn_print_dots_nl "Updating ${modprettyname}" - fn_script_log "Updating ${modprettyname}." - # Check and create required files - fn_mods_files - # Clear lgsm/tmp/mods dir if exists then recreate it - fn_clear_tmp_mods - fn_mods_tmpdir - # Download mod - fn_mod_dl - # Extract the mod - fn_mod_extract - # Convert to lowercase if needed - fn_mod_lowercase - # Remove files that should not be erased - fn_remove_cfg_files - # Build a file list - fn_mod_fileslist - # Copying to destination - fn_mod_copy_destination - # Ending with installation routines - fn_mod_add_list - # Post install fixes - fn_postinstall_tasks - # Cleaning - fn_clear_tmp_mods - fn_print_ok "${modprettyname} updated" - fn_script_log "${modprettyname} updated." - let installedmodsline=installedmodsline+1 - fi +echo "Update addons/mods" +echo "=================================" +fn_mods_check_installed +fn_print_information_nl "${installedmodscount} addons/mods will be updated" +fn_script_log_info "${installedmodscount} mods or addons will be updated" +fn_mods_installed_list +echo "" +echo "Installed addons/mods" +echo "=================================" +# Go through all available commands, get details and display them to the user +for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do + # Current mod is the "ulindex" value of the array we're going through + currentmod="${installedmodslist[ulindex]}" + fn_mod_get_info + # Display installed mods and the update policy + if [ -z "${modkeepfiles}" ]; then + # If modkeepfiles is not set for some reason, that's a problem + fn_script_log_error "Couldn't find update policy for ${modprettyname}" + fn_print_error_nl "Couldn't find update policy for ${modprettyname}" + exitcode="1" + core_exit.sh + # If the mod won't get updated + elif [ "${modkeepfiles}" == "NOUPDATE" ]; then + echo -e " * \e[31m${modprettyname}${default} (won't be updated)" + # If the mode is just overwritten + elif [ "${modkeepfiles}" == "OVERWRITE" ]; then + echo -e " * \e[1m${modprettyname}${default} (overwrite)" + else + echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" + fi +done + +## Update +# List all installed mods and apply update +# Reset line value +installedmodsline="1" +while [ ${installedmodsline} -le ${installedmodscount} ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + if [ -n "${currentmod}" ]; then + fn_mod_get_info + # Don not update mod if the policy is set to "NOUPDATE" + if [ "${modkeepfiles}" == "NOUPDATE" ]; then + fn_print_info "${modprettyname} will not be updated to preserve custom files" + fn_script_log_info "${modprettyname} will not be updated to preserve custom files" else - fn_print_fail "No mod was selected" - fn_script_log_fail "No mod was selected." - exitcode="1" - core_exit.sh + echo "" + fn_create_mods_dir + fn_mods_clear_tmp_dir + fn_mods_create_tmp_dir + fn_mod_install_files + fn_mod_lowercase + fn_remove_cfg_files + fn_mod_create_filelist + fn_mod_copy_destination + fn_mod_add_list + fn_mod_tidy_files_list + fn_mods_clear_tmp_dir fi - done - echo "" - fn_print_ok_nl "Mods update complete" - fn_script_log "Mods update complete." + ((installedmodsline++)) + else + fn_print_fail "No mod was selected" + fn_script_log_fail "No mod was selected" + exitcode="1" + core_exit.sh + fi +done +echo "" +fn_print_ok_nl "Mods update complete" +fn_script_log "Mods update complete" + +# Prevents specific files being overwritten upon update (set by ${modkeepfiles}) +# For that matter, remove cfg files after extraction before copying them to destination +fn_remove_cfg_files(){ + if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then + fn_print_dots "Preventing overwriting of ${modprettyname} config files" + fn_script_log "Preventing overwriting of ${modprettyname} config files" + sleep 0.5 + # Count how many files there are to remove + removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" + # Test all subvalues of "modkeepfiles" using the ";" separator + for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do + # Put the current file we are looking for into a variable + filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + # If it matches an existing file that have been extracted delete the file + if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then + rm -r "${extractdir}/${filetoremove}" + # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update + if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then + touch "${modsdir}/.removedfiles.tmp" + fi + echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" + fi + done + fn_print_ok "Preventing overwriting of ${modprettyname} config files" + sleep 0.5 + fi } -check.sh -mods_core.sh -fn_mods_update_init -fn_mods_update_loop core_exit.sh diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 4295fc478..f35667c6b 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -16,82 +16,17 @@ extractdir="${modstmpdir}/extract" modsinstalledlist="installed-mods.txt" modsinstalledlistfullpath="${modsdir}/${modsinstalledlist}" -# Database initialisation -mods_list.sh - -## Directory management - -# Create mods files and directories if it doesn't exist -# Assuming the game is already installed as mods_list.sh checked for it. -fn_mods_files(){ - # Create mod install directory - if [ ! -d "${modinstalldir}" ]; then - echo "creating mods install directory ${modinstalldir}..." - mkdir -p "${modinstalldir}" - exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - fn_script_log_fatal "Creating mod download dir ${modstmpdir}" - core_exit.sh - else - fn_print_ok_eol_nl - fn_script_log_pass "Creating mod download dir ${modstmpdir}" - fi - sleep 0.5 - fi - - # Create lgsm/data/${modsinstalledlist} - if [ ! -f "${modsinstalledlistfullpath}" ]; then - touch "${modsinstalledlistfullpath}" - fn_script_log "Created ${modsinstalledlistfullpath}" - fi -} - -# Create tmp download mod directory -fn_mods_tmpdir(){ - if [ ! -d "${modstmpdir}" ]; then - mkdir -p "${modstmpdir}" - exitcode=$? - echo -ne "creating mod download dir ${modstmpdir}..." - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - fn_script_log_fatal "Creating mod download dir ${modstmpdir}" - core_exit.sh - else - fn_print_ok_eol_nl - fn_script_log_pass "Creating mod download dir ${modstmpdir}" - fi - fi -} -# Clear contents of mod download directory when finished -fn_clear_tmp_mods(){ - if [ -d "${modstmpdir}" ]; then - rm -r "${modstmpdir}"/* - exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - fn_script_log_fatal "Clearing mod download directory ${modstmpdir}" - core_exit.sh - else - fn_print_ok_eol_nl - fn_script_log_pass "Clearing mod download directory ${modstmpdir}" - fi - - fi - # Clear temp file list as well - if [ -f "${modsdir}/.removedfiles.tmp" ]; then - rm "${modsdir}/.removedfiles.tmp" - fi -} +## Installation -## Download management -fn_install_mod_dl_extract(){ +# Download management +fn_mod_install_files(){ fn_fetch_file "${modurl}" "${modstmpdir}" "${modfilename}" # Check if variable is valid checking if file has been downloaded and exists if [ ! -f "${modstmpdir}/${modfilename}" ]; then - fn_print_failure "An issue occurred upon downloading ${modprettyname}" + fn_print_failure "An issue occurred downloading ${modprettyname}" + fn_script_log_fail "An issue occurred downloading ${modprettyname}" core_exit.sh fi if [ ! -d "${extractdir}" ]; then @@ -132,60 +67,29 @@ fn_mod_lowercase(){ fi } -# Don't overwrite specified files upon update (set by ${modkeepfiles}) -# For that matter, remove cfg files after extraction before copying them to destination -fn_remove_cfg_files(){ - if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - fn_print_dots "Allow for not overwriting ${modprettyname} config files" - fn_script_log "Allow for not overwriting ${modprettyname} config files" - sleep 0.5 - # Let's count how many files there are to remove - removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modkeepfiles" using the ";" separator - for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do - # Put current file we're looking for into a variable - filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" - # If it matches an existing file that have been extracted - if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then - # Then delete the file! - rm -r "${extractdir}/${filetoremove}" - # Write this file path in a tmp file, to rebuild a full file list since it is rebuilt upon update - if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then - touch "${modsdir}/.removedfiles.tmp" - fi - echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" - fi - done - fn_print_ok "Allow for preserving ${modprettyname} config files" - sleep 0.5 - fi -} - # Create ${modcommand}-files.txt containing the full extracted file/directory list -fn_mod_fileslist(){ +fn_mod_create_filelist(){ echo -ne "building ${modcommand}-files.txt..." - sleep 0.5 # ${modsdir}/${modcommand}-files.txt - find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdir}"/${modcommand}-files.txt + find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - fn_script_log_fatal "Building ${modcommand}-files.txt" + fn_script_log_fatal "Building ${modsdir}/${modcommand}-files.txt" core_exit.sh else fn_print_ok_eol_nl - fn_script_log_pass "Building ${modcommand}-files.txt" + fn_script_log_pass "Building ${modsdir}/${modcommand}-files.txt" fi - fn_script_log "Writing file list ${modsdir}/${modcommand}-files.txt" # Adding removed files if needed if [ -f "${modsdir}/.removedfiles.tmp" ]; then - cat "${modsdir}/.removedfiles.tmp" >> "${modsdir}"/${modcommand}-files.txt + cat "${modsdir}/.removedfiles.tmp" >> "${modsdir}/${modcommand}-files.txt" fi sleep 0.5 } -# Copy the mod to the destination ${modinstalldir} +# Copy the mod into serverfiles fn_mod_copy_destination(){ echo -ne "copying ${modprettyname} to ${modinstalldir}..." sleep 0.5 @@ -200,75 +104,32 @@ fn_mod_copy_destination(){ fi } -# Check if the mod is already installed and warn the user -fn_mod_already_installed(){ - if [ -f "${modsinstalledlistfullpath}" ]; then - if [ -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then - fn_print_warning_nl "${modprettyname} is already installed" - fn_script_log_warn "${modprettyname} is already installed" - sleep 1 - echo " * Any configs may be overwritten." - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; core_exit.sh;; - * ) echo "Please answer yes or no.";; - esac - done - fi - fn_script_log_info "User selected to continue" - fi -} - -# Add the mod to the installed mods list +# Add the mod to the installed-mods.txt fn_mod_add_list(){ - # Append modname to lockfile if it's not already in it if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then echo "${modcommand}" >> "${modsinstalledlistfullpath}" fn_script_log_info "${modcommand} added to ${modsinstalledlist}" fi } -fn_check_files_list(){ - # File list must exist and be valid before any operation on it - if [ -f "${modsdir}/${modcommand}-files.txt" ]; then - # How many lines is the file list - modsfilelistsize="$(cat "${modsdir}/${modcommand}-files.txt" | wc -l)" - # If file list is empty - if [ "${modsfilelistsize}" -eq 0 ]; then - fn_print_failure "${modcommand}-files.txt is empty" - echo "* Unable to remove ${modprettyname}" - fn_script_log_fatal "${modcommand}-files.txt is empty: Unable to remove ${modprettyname}." - core_exit.sh - fi - else - fn_print_failure "${modsdir}/${modcommand}-files.txt does not exist" - fn_script_log_fatal "${modsdir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." - core_exit.sh - fi -} - -# Apply some post-install fixes to make sure everything will be fine -fn_postinstall_tasks(){ - # Prevent sensitive directories from being erased upon uninstall by removing them from: ${modsdir}/${modcommand}-files.txt +fn_mod_tidy_files_list(){ + # Prevent sensitive directories from being erased by removing them from: ${modcommand}-files.txt # Check file validity - fn_check_files_list + fn_check_mod_files_list # Output to the user echo -ne "tidy up ${modcommand}-files.txt..." sleep 0.5 - fn_script_log_info "Rearranging ${modcommand}-files.txt" - # What lines/files to remove from file list (end var with a ";" separator) + fn_script_log_info "Tidy up ${modcommand}-files.txt" + # Lines/files to remove from file list (end with ";" separator) removefromlist="cfg;addons;" # Loop through files to remove from file list, - # that way these files won't get removed upon uninstall - # How many elements to remove from list + # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" # Test all subvalue of "removefromlist" using the ";" separator for ((filesindex=1; filesindex < ${removefromlistamount}; filesindex++)); do # Put current file into test variable - removefilevar="$( echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }' )" - # Then delete matching line(s)! + removefilevar="$(echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }')" + # Delete matching line(s) sed -i "/^${removefilevar}$/d" "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -290,47 +151,112 @@ fn_postinstall_tasks(){ fi } -# Apply some post-uninstall fixes to make sure everything will be fine -fn_postuninstall_tasks(){ - # Oxide fix - # Oxide replaces server files, so a validate is required after uninstall - if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then - fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" - fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" - exitbypass="1" - command_validate.sh - unset exitbypass +## Information Gathering + +# Get details of a mod any (relevant and unique, such as full mod name or install command) value +fn_mod_get_info(){ + # Variable to know when job is done + modinfocommand="0" + # Find entry in global array + for ((index=0; index <= ${#mods_global_array[@]}; index++)); do + # When entry is found + if [ "${mods_global_array[index]}" == "${currentmod}" ]; then + # Go back to the previous "MOD" separator + for ((index=index; index <= ${#mods_global_array[@]}; index--)); do + # When "MOD" is found + if [ "${mods_global_array[index]}" == "MOD" ]; then + # Get info + if [ -z "$index" ]; then + fn_print_error "index variable not set. Please report an issue." + echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + exitcode="1" + core_exit.sh + fi + modcommand="${mods_global_array[index+1]}" + modprettyname="${mods_global_array[index+2]}" + modurl="${mods_global_array[index+3]}" + modfilename="${mods_global_array[index+4]}" + modsubdirs="${mods_global_array[index+5]}" + modlowercase="${mods_global_array[index+6]}" + modinstalldir="${mods_global_array[index+7]}" + modkeepfiles="${mods_global_array[index+8]}" + modengines="${mods_global_array[index+9]}" + modgames="${mods_global_array[index+10]}" + modexcludegames="${mods_global_array[index+11]}" + modsite="${mods_global_array[index+12]}" + moddescription="${mods_global_array[index+13]}" + fi + modinfocommand="1" + break + fi + ((totalmods++)) + done + fi + # Exit the loop if job is done + if [ "${modinfocommand}" == "1" ]; then + break + fi + done + + # What happens if mod is not found + if [ "${modinfocommand}" == "0" ]; then + fn_script_log_error "Could not find information for ${currentmod}" + fn_print_error_nl "Could not find information for ${currentmod}" + exitcode="1" + core_exit.sh fi } -######################### -## mods_list.sh arrays ## -######################### - -## Define info for a mod - -# Define all variables from a mod at once when index is set to a separator -fn_mod_info(){ -# If for some reason no index is set, none of this can work -if [ -z "$index" ]; then - fn_print_error "index variable not set. Please report an issue to LGSM Team." - echo "* https://github.com/GameServerManagers/LinuxGSM/issues" - exitcode="1" - core_exit.sh -fi - modcommand="${mods_global_array[index+1]}" - modprettyname="${mods_global_array[index+2]}" - modurl="${mods_global_array[index+3]}" - modfilename="${mods_global_array[index+4]}" - modsubdirs="${mods_global_array[index+5]}" - modlowercase="${mods_global_array[index+6]}" - modinstalldir="${mods_global_array[index+7]}" - modkeepfiles="${mods_global_array[index+8]}" - modengines="${mods_global_array[index+9]}" - modgames="${mods_global_array[index+10]}" - modexcludegames="${mods_global_array[index+11]}" - modsite="${mods_global_array[index+12]}" - moddescription="${mods_global_array[index+13]}" +# Builds list of installed mods +# using installed-mods.txt grabing mod info from mods_list.sh +fn_mods_installed_list(){ + # Set/reset variables + installedmodsline="1" + installedmodslist=() + # Loop through every line of the installed mods list ${modsinstalledlistfullpath} + while [ ${installedmodsline} -le ${installedmodscount} ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" + # Get mod info to make sure mod exists + fn_mod_get_info + # Add the mod to available commands + installedmodslist+=( "${modcommand}" ) + # Increment line check + ((installedmodsline++)) + done + if [ -n "${totalmods}" ] ;then + fn_script_log_info "${totalmods} addons/mods are already installed" + fi +} + +# Checks if a mod is compatible for installation +# Provides available mods for installation +# Provides commands for mods installation +fn_mods_available(){ + # First, reset variables + compatiblemodslist=() + availablemodscommands=() + modprettynamemaxlength="0" + modsitemaxlength="0" + moddescriptionmaxlength="0" + modcommandmaxlength="0" + # Find compatible games + # Find separators through the global array + for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do + # If current value is a separator; then + if [ "${mods_global_array[index]}" == "${modseparator}" ]; then + # Set mod variables + fn_mods_define + # Test if game is compatible + fn_mod_compatible_test + # If game is compatible + if [ "${modcompatibility}" == "1" ]; then + # Put it into an array to prepare user output + compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) + # Keep available commands in an array to make life easier + availablemodscommands+=( "${modcommand}" ) + fi + fi + done } ## Mod compatibility check @@ -413,80 +339,82 @@ fn_mod_compatible_test(){ fi } -# Checks if a mod is compatible for installation -# Provides available mods for installation -# Provides commands for mods installation -fn_mods_available(){ - # First, reset variables - compatiblemodslist=() - availablemodscommands=() - modprettynamemaxlength="0" - modsitemaxlength="0" - moddescriptionmaxlength="0" - modcommandmaxlength="0" - # Find compatible games - # Find separators through the global array - for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do - # If current value is a separator; then - if [ "${mods_global_array[index]}" == "${modseparator}" ]; then - # Set mod variables - fn_mod_info - # Test if game is compatible - fn_mod_compatible_test - # If game is compatible - if [ "${modcompatibility}" == "1" ]; then - # Put it into an array to prepare user output - compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) - # Keep available commands in an array to make life easier - availablemodscommands+=( "${modcommand}" ) - fi +## Directory management + +# Create mods files and directories if it doesn't exist +fn_create_mods_dir(){ + # Create mod install directory + if [ ! -d "${modinstalldir}" ]; then + echo "creating mods install directory ${modinstalldir}..." + mkdir -p "${modinstalldir}" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modinstalldir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modinstalldir}" fi - done + sleep 0.5 + fi + + # Create lgsm/data/${modsinstalledlist} + if [ ! -f "${modsinstalledlistfullpath}" ]; then + touch "${modsinstalledlistfullpath}" + fn_script_log_info "Created ${modsinstalledlistfullpath}" + fi } -# Output available mods in a nice way to the user -fn_mods_show_available(){ - # Set and reset vars - compatiblemodslistindex=0 - # As long as we're within index values - while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do - # Set values for convenience - displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" - displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" - displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" - displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" - # Output mods to the user - echo -e "\e[1m${displayedmodname}${default} - ${displayedmoddescription} - ${displayedmodsite}" - echo -e " * ${cyan}${displayedmodcommand}${default}" - # Increment index from the amount of values we just displayed - let "compatiblemodslistindex+=4" - ((totalmods++)) - done - # If no mods are found - if [ -z "${compatiblemodslist}" ]; then - fn_print_fail "No mods are currently available for ${gamename}." - core_exit.sh +# Create tmp download mod directory +fn_mods_create_tmp_dir(){ + if [ ! -d "${modstmpdir}" ]; then + mkdir -p "${modstmpdir}" + exitcode=$? + echo -ne "creating mod download dir ${modstmpdir}..." + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modstmpdir}" + fi fi - fn_script_log_info "${totalmods} addons/mods are available for install" } -# Checks if mods have been installed -# Also returns ${installedmodscount} if mods were found -fn_check_installed_mods(){ +# Remove the tmp mod download directory when finished +fn_mods_clear_tmp_dir(){ + if [ -d "${modstmpdir}" ]; then + rm -r "${modstmpdir}" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Clearing mod download directory ${modstmpdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Clearing mod download directory ${modstmpdir}" + fi + + fi + # Clear temp file list as well + if [ -f "${modsdir}/.removedfiles.tmp" ]; then + rm "${modsdir}/.removedfiles.tmp" + fi +} + + +# Exit if no mods were installed +fn_mods_check_installed(){ # Count installed mods if [ -f "${modsinstalledlistfullpath}" ]; then installedmodscount="$(cat "${modsinstalledlistfullpath}" | wc -l)" + else + installedmodscount=0 fi -} - -# A simple function to exit if no mods were installed -# Also returns ${installedmodscount} if mods were found -fn_mods_exit_if_not_installed(){ - # Checks if mods have been installed - # Also returns ${installedmodscount} if mods were found - fn_check_installed_mods - # If no mods lockfile is found or if it is empty - if [ ! -f "${modsinstalledlistfullpath}" ]||[ -z "${installedmodscount}" ]||[ ${installedmodscount} -le 0 ]; then + # If no mods are found + if [ ${installedmodscount} -eq 0 ]; then fn_print_information_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" fn_script_log_info "No installed mods or addons were found." @@ -494,155 +422,26 @@ fn_mods_exit_if_not_installed(){ fi } -# Builds installed mods list and sets available commands according to installed mods -# (requires ${installedmodscount} from fn_check_installed_mods) -fn_mods_available_commands_from_installed(){ - # Set/reset variables - installedmodsline="1" - installedmodslist=() - # Loop through every line of the installed mods list ${modsinstalledlistfullpath} - while [ ${installedmodsline} -le ${installedmodscount} ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" - # Get mod info to make sure mod exists - fn_mod_get_info_from_command - # Add the mod to available commands - installedmodslist+=( "${modcommand}" ) - # Increment line check - let installedmodsline=installedmodsline+1 - done - if [ -n "${totalmods}" ] ;then - fn_script_log_info "${totalmods} addons/mods are already installed" - fi -} - -# Displays a detailed list of installed mods -# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -fn_installed_mods_detailed_list(){ - fn_check_installed_mods - fn_mods_available_commands_from_installed - # Were now based on ${installedmodslist} array's values - # We're gonna go through all available commands, get details and display them to the user - for ((dlindex=0; dlindex < ${#installedmodslist[@]}; dlindex++)); do - # Current mod is the "dlindex" value of the array we're going through - currentmod="${installedmodslist[dlindex]}" - # Get mod info - fn_mod_get_info_from_command - # Display mod info to the user - echo -e "\e[1m${modprettyname}${default} - ${moddescription} - ${modsite}" - echo -e " * ${cyan}${modcommand}${default}" - done -} - -# Displays a detailed list of installed mods -# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -fn_installed_mods_medium_list(){ - fn_check_installed_mods - fn_mods_available_commands_from_installed - # Were now based on ${installedmodslist} array's values - # We're gonna go through all available commands, get details and display them to the user - for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do - # Current mod is the "mlindex" value of the array we're going through - currentmod="${installedmodslist[mlindex]}" - # Get mod info - fn_mod_get_info_from_command - # Display mod info to the user - echo -e "${cyan}${modcommand}${default} - \e[1m${modprettyname}${default} - ${moddescription}" - done -} - -# Displays a simple list of installed mods -# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -# This list is only displayed when some mods are installed -fn_installed_mods_light_list(){ - fn_check_installed_mods - fn_mods_available_commands_from_installed - if [ "${installedmodscount}" -gt 0 ]; then - echo "Installed addons/mods" - echo "=================================" - # Were now based on ${installedmodslist} array's values - # We're gonna go through all available commands, get details and display them to the user - for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do - # Current mod is the "llindex" value of the array we're going through - currentmod="${installedmodslist[llindex]}" - # Get mod info - fn_mod_get_info_from_command - # Display simple mod info to the user - echo -e " * \e[1m${green}${modcommand}${default}${default}" - ((totalmodsinstalled++)) - done - echo "" - fi -} - -# Displays a simple list of installed mods for mods-update command -# Requires fn_check_installed_mods and fn_mods_available_commands_from_installed to run -fn_installed_mods_update_list(){ - fn_check_installed_mods - fn_mods_available_commands_from_installed - echo "=================================" - echo "Installed addons/mods" - # Were now based on ${installedmodslist} array's values - # We're gonna go through all available commands, get details and display them to the user - for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do - # Current mod is the "ulindex" value of the array we're going through - currentmod="${installedmodslist[ulindex]}" - # Get mod info - fn_mod_get_info_from_command - # Display simple mod info to the user according to the update policy - # If modkeepfiles is not set for some reason, that's a problem - if [ -z "${modkeepfiles}" ]; then - fn_script_log_error "Couldn't find update policy for ${modprettyname}" - fn_print_error_nl "Couldn't find update policy for ${modprettyname}" - exitcode="1" +fn_check_mod_files_list(){ + # File list must exist and be valid before any operation on it + if [ -f "${modsdir}/${modcommand}-files.txt" ]; then + # How many lines is the file list + modsfilelistsize="$(cat "${modsdir}/${modcommand}-files.txt" | wc -l)" + # If file list is empty + if [ "${modsfilelistsize}" -eq 0 ]; then + fn_print_failure "${modcommand}-files.txt is empty" + echo "* Unable to remove ${modprettyname}" + fn_script_log_fatal "${modcommand}-files.txt is empty: Unable to remove ${modprettyname}." core_exit.sh - # If the mod won't get updated - elif [ "${modkeepfiles}" == "NOUPDATE" ]; then - echo -e " * \e[31m${modprettyname}${default} (won't be updated)" - # If the mode is just overwritten - elif [ "${modkeepfiles}" == "OVERWRITE" ]; then - echo -e " * \e[1m${modprettyname}${default} (overwrite)" - else - echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" - fi - done -} - -# Get details of a mod any (relevant and unique, such as full mod name or install command) value -fn_mod_get_info_from_command(){ - # Variable to know when job is done - modinfocommand="0" - # Find entry in global array - for ((index=0; index <= ${#mods_global_array[@]}; index++)); do - # When entry is found - if [ "${mods_global_array[index]}" == "${currentmod}" ]; then - # Go back to the previous "MOD" separator - for ((index=index; index <= ${#mods_global_array[@]}; index--)); do - # When "MOD" is found - if [ "${mods_global_array[index]}" == "MOD" ]; then - # Get info - fn_mod_info - modinfocommand="1" - break - fi - ((totalmods++)) - done - - fi - # Exit the loop if job is done - if [ "${modinfocommand}" == "1" ]; then - break fi - done - - # What happens if mod is not found - if [ "${modinfocommand}" == "0" ]; then - fn_script_log_error "Could not find information for ${currentmod}" - fn_print_error_nl "Could not find information for ${currentmod}" - exitcode="1" + else + fn_print_failure "${modsdir}/${modcommand}-files.txt does not exist" + fn_script_log_fatal "${modsdir}/${modcommand}-files.txt does not exist: Unable to remove ${modprettyname}." core_exit.sh fi } -fn_mods_scrape_urls -fn_mods_info -fn_mods_available +# Database initialisation +mods_list.sh +mods_dir.sh +fn_mods_available \ No newline at end of file diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 73584f3dd..566efedc1 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -17,61 +17,57 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" modseparator="MOD" # Define mods information (required) -fn_mods_info(){ - # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubdirs" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) - # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) - # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) - # None of those values can be empty - # index | Usage - # [0] | MOD: separator, all mods must begin with it - # [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) - # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user - # [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) - # [4] | "filename": the output filename - # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) - # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) - # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) - # [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating - # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value - # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value - # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) - # [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install - # [13] | "Short Description" a description showed to the user upon installation +# REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubdirs" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) +# Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) +# Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) +# None of those values can be empty +# index | Usage +# [0] | MOD: separator, all mods must begin with it +# [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) +# [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user +# [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) +# [4] | "filename": the output filename +# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) +# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) +# [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) +# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating +# [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value +# [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value +# [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) +# [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install +# [13] | "Short Description" a description showed to the user upon installation - # Source mods - mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) - mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "NOTGAMES" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) - # Garry's Mod Addons - mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) - mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) - mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) - mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) - mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) - mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) - mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) - mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) - mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) - # Oxidemod - mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Rust.zip" "Oxide-Rust_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Rust;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-rust.1659" "Allows for the use of plugins" ) - mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Hurtworld.zip" "Oxide-Hurtworld_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332" "Allows for the use of plugins" ) - mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-7DaysToDie.zip" "Oxide-7DaysToDie_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813" "Allows for the use of plugins" ) +# Source mods +mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) +mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "NOTGAMES" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) +# Garry's Mod Addons +mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) +mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) +mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) +mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) +mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) +mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) +mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) +mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) +mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) +# Oxidemod +mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Rust.zip" "Oxide-Rust_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Rust;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-rust.1659" "Allows for the use of plugins" ) +mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Hurtworld.zip" "Oxide-Hurtworld_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332" "Allows for the use of plugins" ) +mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-7DaysToDie.zip" "Oxide-7DaysToDie_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813" "Allows for the use of plugins" ) - # REQUIRED: Set all mods info into one array for convenience - mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) -} +# REQUIRED: Set all mods info into one array for convenience +mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) # Get a proper URL for mods that don't provide a good one (optional) -fn_mods_scrape_urls(){ - fn_script_log_info "Retrieving latest mods URLs" - # Metamod - metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" - metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" - metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" - metamodurl="${metamoddownloadurl}/${metamodlatestfile}" - # Sourcemod - sourcemodmversion="1.8" - sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" - sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" - sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" - sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" -} +fn_script_log_info "Retrieving latest mods URLs" +# Metamod +metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" +metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" +metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" +metamodurl="${metamoddownloadurl}/${metamodlatestfile}" +# Sourcemod +sourcemodmversion="1.8" +sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" +sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" +sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" +sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" From db3e0c64ebadff7bba1963fd9b1b16e2c5613682 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:06:36 +0000 Subject: [PATCH 248/325] Bug fixes --- lgsm/functions/command_mods_install.sh | 4 -- lgsm/functions/mods_core.sh | 78 ++++++++++++++------------ 2 files changed, 43 insertions(+), 39 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index fc6f78c9e..0519c75c8 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -14,9 +14,6 @@ mods_core.sh fn_print_header -# exits if no mods installed -fn_mods_check_installed - # Displays a list of installed mods fn_mods_installed_list if [ ${installedmodscount} -gt 0 ]; then @@ -104,7 +101,6 @@ fi ## Installation fn_mod_get_info -fn_mod_already_installed fn_create_mods_dir fn_mods_clear_tmp_dir fn_mods_create_tmp_dir diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index f35667c6b..9be5127c0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -44,7 +44,7 @@ fn_mod_lowercase(){ fn_script_log "Converting ${modprettyname} files to lowercase" files=$(find "${extractdir}" -depth | wc -l) echo -en "\r" - while read src; do + while read -r src; do dst=`dirname "${src}"`/`basename "${src}" | tr '[A-Z]' '[a-z]'` if [ "${src}" != "${dst}" ] then @@ -126,7 +126,7 @@ fn_mod_tidy_files_list(){ # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" # Test all subvalue of "removefromlist" using the ";" separator - for ((filesindex=1; filesindex < ${removefromlistamount}; filesindex++)); do + for ((filesindex=1; filesindex < removefromlistamount; filesindex++)); do # Put current file into test variable removefilevar="$(echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }')" # Delete matching line(s) @@ -166,31 +166,13 @@ fn_mod_get_info(){ # When "MOD" is found if [ "${mods_global_array[index]}" == "MOD" ]; then # Get info - if [ -z "$index" ]; then - fn_print_error "index variable not set. Please report an issue." - echo "* https://github.com/GameServerManagers/LinuxGSM/issues" - exitcode="1" - core_exit.sh - fi - modcommand="${mods_global_array[index+1]}" - modprettyname="${mods_global_array[index+2]}" - modurl="${mods_global_array[index+3]}" - modfilename="${mods_global_array[index+4]}" - modsubdirs="${mods_global_array[index+5]}" - modlowercase="${mods_global_array[index+6]}" - modinstalldir="${mods_global_array[index+7]}" - modkeepfiles="${mods_global_array[index+8]}" - modengines="${mods_global_array[index+9]}" - modgames="${mods_global_array[index+10]}" - modexcludegames="${mods_global_array[index+11]}" - modsite="${mods_global_array[index+12]}" - moddescription="${mods_global_array[index+13]}" - fi + fn_mod_info modinfocommand="1" break fi ((totalmods++)) done + fi # Exit the loop if job is done if [ "${modinfocommand}" == "1" ]; then @@ -207,12 +189,40 @@ fn_mod_get_info(){ fi } +# Define all variables for a mod at once when index is set to a separator +fn_mods_define(){ +if [ -z "$index" ]; then + fn_print_error "index variable not set. Please report an issue." + echo "* https://github.com/GameServerManagers/LinuxGSM/issues" + exitcode="1" + core_exit.sh +fi + modcommand="${mods_global_array[index+1]}" + modprettyname="${mods_global_array[index+2]}" + modurl="${mods_global_array[index+3]}" + modfilename="${mods_global_array[index+4]}" + modsubdirs="${mods_global_array[index+5]}" + modlowercase="${mods_global_array[index+6]}" + modinstalldir="${mods_global_array[index+7]}" + modkeepfiles="${mods_global_array[index+8]}" + modengines="${mods_global_array[index+9]}" + modgames="${mods_global_array[index+10]}" + modexcludegames="${mods_global_array[index+11]}" + modsite="${mods_global_array[index+12]}" + moddescription="${mods_global_array[index+13]}" +} + # Builds list of installed mods # using installed-mods.txt grabing mod info from mods_list.sh fn_mods_installed_list(){ + fn_mods_count_installed # Set/reset variables installedmodsline="1" installedmodslist=() + modprettynamemaxlength="0" + modsitemaxlength="0" + moddescriptionmaxlength="0" + modcommandmaxlength="0" # Loop through every line of the installed mods list ${modsinstalledlistfullpath} while [ ${installedmodsline} -le ${installedmodscount} ]; do currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" @@ -235,10 +245,6 @@ fn_mods_available(){ # First, reset variables compatiblemodslist=() availablemodscommands=() - modprettynamemaxlength="0" - modsitemaxlength="0" - moddescriptionmaxlength="0" - modcommandmaxlength="0" # Find compatible games # Find separators through the global array for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do @@ -270,7 +276,7 @@ fn_compatible_mod_games(){ # How many games we need to test gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modgames" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${gamesamount}; gamevarindex++)); do + for ((gamevarindex=1; gamevarindex < gamesamount; gamevarindex++)); do # Put current game name into modtest variable gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" # If game name matches @@ -312,7 +318,7 @@ fn_not_compatible_mod_games(){ # How many engines we need to test excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" # Test all subvalue of "modexcludegames" using the ";" separator - for ((gamevarindex=1; gamevarindex < ${excludegamesamount}; gamevarindex++)); do + for ((gamevarindex=1; gamevarindex < excludegamesamount; gamevarindex++)); do # Put current engine name into modtest variable excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" # If engine name matches @@ -404,15 +410,18 @@ fn_mods_clear_tmp_dir(){ fi } - -# Exit if no mods were installed -fn_mods_check_installed(){ - # Count installed mods +fn_mods_count_installed(){ if [ -f "${modsinstalledlistfullpath}" ]; then - installedmodscount="$(cat "${modsinstalledlistfullpath}" | wc -l)" + installedmodscount="$(wc -l < "${modsinstalledlistfullpath}")" else installedmodscount=0 fi +} + +# Exit if no mods were installed +fn_mods_check_installed(){ + # Count installed mods + # If no mods are found if [ ${installedmodscount} -eq 0 ]; then fn_print_information_nl "No installed mods or addons were found" @@ -426,7 +435,7 @@ fn_check_mod_files_list(){ # File list must exist and be valid before any operation on it if [ -f "${modsdir}/${modcommand}-files.txt" ]; then # How many lines is the file list - modsfilelistsize="$(cat "${modsdir}/${modcommand}-files.txt" | wc -l)" + modsfilelistsize="$(wc -l < "${modsdir}/${modcommand}-files.txt")" # If file list is empty if [ "${modsfilelistsize}" -eq 0 ]; then fn_print_failure "${modcommand}-files.txt is empty" @@ -443,5 +452,4 @@ fn_check_mod_files_list(){ # Database initialisation mods_list.sh -mods_dir.sh fn_mods_available \ No newline at end of file From 6422904488422178c02934e378e9d1e40824cef5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:09:07 +0000 Subject: [PATCH 249/325] fn_mods_define --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9be5127c0..c8aa5f492 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -166,7 +166,7 @@ fn_mod_get_info(){ # When "MOD" is found if [ "${mods_global_array[index]}" == "MOD" ]; then # Get info - fn_mod_info + fn_mods_define modinfocommand="1" break fi From 63a8193798bb03d814490a3c5efc77497f4caf00 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:19:01 +0000 Subject: [PATCH 250/325] corrected variable --- lgsm/functions/command_mods_remove.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index e0b1623d1..a19a48ae7 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -69,7 +69,7 @@ modfileline="1" tput sc while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove - currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")" + currentfileremove="$(sed "${modfileline}q;d" "${modsdir}/${modcommand}-files.txt")" # If file or directory exists, then remove it fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then @@ -93,8 +93,8 @@ sleep 0.5 # Remove file list echo -en "removing ${modcommand}-files.txt..." sleep 0.5 -fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt" -rm -rf "${modsdatadir}/${modcommand}-files.txt" +fn_script_log "Removing: ${modsdir}/${modcommand}-files.txt" +rm -rf "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl From c2de5e9c81cc3b16cd0abbf65390905a4996570c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:28:25 +0000 Subject: [PATCH 251/325] corrected var --- lgsm/functions/command_mods_remove.sh | 6 +++--- lgsm/functions/command_mods_update.sh | 2 +- lgsm/functions/mods_core.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index a19a48ae7..662f738bf 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -81,7 +81,7 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do ((modfileline++)) done tput rc; tput ed; -echo -ne "removing ${modprettyname} ${modfileline} / ${modsfilelistsize}..." +echo -ne "sed ${modprettyname} ${modfileline} / ${modsfilelistsize}..." if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl core_exit.sh @@ -106,8 +106,8 @@ fi # Remove mods from installed mods list echo -en "removing ${modcommand} from ${modslockfile}..." sleep 0.5 -fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}" -sed -i "/^${modcommand}$/d" "${modslockfilefullpath}" +fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" +sed -i "/^${modcommand}$/d" "${modsinstalledlist}" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 123e2b4e8..b89fdf015 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -51,7 +51,7 @@ done # Reset line value installedmodsline="1" while [ ${installedmodsline} -le ${installedmodscount} ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")" + currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlist}")" if [ -n "${currentmod}" ]; then fn_mod_get_info # Don not update mod if the policy is set to "NOUPDATE" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index c8aa5f492..1760d852f 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -421,7 +421,7 @@ fn_mods_count_installed(){ # Exit if no mods were installed fn_mods_check_installed(){ # Count installed mods - + fn_mods_count_installed # If no mods are found if [ ${installedmodscount} -eq 0 ]; then fn_print_information_nl "No installed mods or addons were found" From 622a3bc8fd76216606bc78a000cf2eb7f67c7ef9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:42:54 +0000 Subject: [PATCH 252/325] messages --- lgsm/functions/mods_core.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 1760d852f..1d3edc48d 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -377,14 +377,14 @@ fn_mods_create_tmp_dir(){ if [ ! -d "${modstmpdir}" ]; then mkdir -p "${modstmpdir}" exitcode=$? - echo -ne "creating mod download dir ${modstmpdir}..." + echo -ne "creating mod download directory ${modstmpdir}..." if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - fn_script_log_fatal "Creating mod download dir ${modstmpdir}" + fn_script_log_fatal "Creating mod download directory ${modstmpdir}" core_exit.sh else fn_print_ok_eol_nl - fn_script_log_pass "Creating mod download dir ${modstmpdir}" + fn_script_log_pass "Creating mod download directory ${modstmpdir}" fi fi } @@ -392,6 +392,7 @@ fn_mods_create_tmp_dir(){ # Remove the tmp mod download directory when finished fn_mods_clear_tmp_dir(){ if [ -d "${modstmpdir}" ]; then + echo -ne "clearing mod download directory ${modstmpdir}..." rm -r "${modstmpdir}" exitcode=$? if [ ${exitcode} -ne 0 ]; then From f51c520d5047d6e7d88607f9f723befc64d8d443 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:45:15 +0000 Subject: [PATCH 253/325] corrected function name --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index b89fdf015..80589bc8d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -75,7 +75,7 @@ while [ ${installedmodsline} -le ${installedmodscount} ]; do ((installedmodsline++)) else fn_print_fail "No mod was selected" - fn_script_log_fail "No mod was selected" + fn_script_log_fatal "No mod was selected" exitcode="1" core_exit.sh fi From 3ca9951ceefcc9dc65f1a76a657625ee467eea42 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:51:30 +0000 Subject: [PATCH 254/325] corrected var --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 80589bc8d..4521df74d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -51,7 +51,7 @@ done # Reset line value installedmodsline="1" while [ ${installedmodsline} -le ${installedmodscount} ]; do - currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlist}")" + currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" if [ -n "${currentmod}" ]; then fn_mod_get_info # Don not update mod if the policy is set to "NOUPDATE" From 63f2ace5f83688967d4f471a91e6a784fed8a975 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 21:55:02 +0000 Subject: [PATCH 255/325] Moved function in to correct place --- lgsm/functions/command_mods_update.sh | 56 +++++++++++++-------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 4521df74d..614abf6d0 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -14,6 +14,34 @@ mods_core.sh fn_print_header +# Prevents specific files being overwritten upon update (set by ${modkeepfiles}) +# For that matter, remove cfg files after extraction before copying them to destination +fn_remove_cfg_files(){ + if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then + fn_print_dots "Preventing overwriting of ${modprettyname} config files" + fn_script_log "Preventing overwriting of ${modprettyname} config files" + sleep 0.5 + # Count how many files there are to remove + removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" + # Test all subvalues of "modkeepfiles" using the ";" separator + for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do + # Put the current file we are looking for into a variable + filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + # If it matches an existing file that have been extracted delete the file + if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then + rm -r "${extractdir}/${filetoremove}" + # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update + if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then + touch "${modsdir}/.removedfiles.tmp" + fi + echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" + fi + done + fn_print_ok "Preventing overwriting of ${modprettyname} config files" + sleep 0.5 + fi +} + echo "Update addons/mods" echo "=================================" fn_mods_check_installed @@ -84,32 +112,4 @@ echo "" fn_print_ok_nl "Mods update complete" fn_script_log "Mods update complete" -# Prevents specific files being overwritten upon update (set by ${modkeepfiles}) -# For that matter, remove cfg files after extraction before copying them to destination -fn_remove_cfg_files(){ - if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - fn_print_dots "Preventing overwriting of ${modprettyname} config files" - fn_script_log "Preventing overwriting of ${modprettyname} config files" - sleep 0.5 - # Count how many files there are to remove - removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" - # Test all subvalues of "modkeepfiles" using the ";" separator - for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do - # Put the current file we are looking for into a variable - filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" - # If it matches an existing file that have been extracted delete the file - if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then - rm -r "${extractdir}/${filetoremove}" - # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update - if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then - touch "${modsdir}/.removedfiles.tmp" - fi - echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" - fi - done - fn_print_ok "Preventing overwriting of ${modprettyname} config files" - sleep 0.5 - fi -} - core_exit.sh From 33b94670093dada8287d7cfa2af236db30b68a1a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:03:41 +0000 Subject: [PATCH 256/325] used correct var --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 662f738bf..e9c6031f3 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -107,7 +107,7 @@ fi echo -en "removing ${modcommand} from ${modslockfile}..." sleep 0.5 fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" -sed -i "/^${modcommand}$/d" "${modsinstalledlist}" +sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl From 9cbca7b20b2478332fd70f0da7fb8fe3f9e17861 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:33:02 +0000 Subject: [PATCH 257/325] Altered UI of update function --- lgsm/functions/command_mods_update.sh | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 614abf6d0..0b42fdaa6 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -42,15 +42,13 @@ fn_remove_cfg_files(){ fi } -echo "Update addons/mods" -echo "=================================" +fn_print_dots "Update addons/mods" +sleep 0.5 fn_mods_check_installed -fn_print_information_nl "${installedmodscount} addons/mods will be updated" +fn_print_info "Update addons/mods: ${installedmodscount} addons/mods will be updated" +sleep 0.5 fn_script_log_info "${installedmodscount} mods or addons will be updated" fn_mods_installed_list -echo "" -echo "Installed addons/mods" -echo "=================================" # Go through all available commands, get details and display them to the user for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do # Current mod is the "ulindex" value of the array we're going through @@ -59,8 +57,8 @@ for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do # Display installed mods and the update policy if [ -z "${modkeepfiles}" ]; then # If modkeepfiles is not set for some reason, that's a problem - fn_script_log_error "Couldn't find update policy for ${modprettyname}" - fn_print_error_nl "Couldn't find update policy for ${modprettyname}" + fn_script_log_error "Could not find update policy for ${modprettyname}" + fn_print_error_nl "Could not find update policy for ${modprettyname}" exitcode="1" core_exit.sh # If the mod won't get updated From 57d12ceca21a99f0b2c77aabd9f81dea1e8190f0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:43:14 +0000 Subject: [PATCH 258/325] Further ui changes --- lgsm/functions/command_mods_update.sh | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 0b42fdaa6..d4233a43d 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -12,8 +12,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh mods_core.sh -fn_print_header - # Prevents specific files being overwritten upon update (set by ${modkeepfiles}) # For that matter, remove cfg files after extraction before copying them to destination fn_remove_cfg_files(){ @@ -45,8 +43,7 @@ fn_remove_cfg_files(){ fn_print_dots "Update addons/mods" sleep 0.5 fn_mods_check_installed -fn_print_info "Update addons/mods: ${installedmodscount} addons/mods will be updated" -sleep 0.5 +fn_print_info_nl "Update addons/mods: ${installedmodscount} addons/mods will be updated" fn_script_log_info "${installedmodscount} mods or addons will be updated" fn_mods_installed_list # Go through all available commands, get details and display them to the user @@ -63,14 +60,15 @@ for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do core_exit.sh # If the mod won't get updated elif [ "${modkeepfiles}" == "NOUPDATE" ]; then - echo -e " * \e[31m${modprettyname}${default} (won't be updated)" + echo -e " * \e[31m${modprettyname}${default} (won't be updated)" # If the mode is just overwritten elif [ "${modkeepfiles}" == "OVERWRITE" ]; then - echo -e " * \e[1m${modprettyname}${default} (overwrite)" + echo -e " * \e[1m${modprettyname}${default} (overwrite)" else - echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" + echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" fi done +sleep 1 ## Update # List all installed mods and apply update From 53b528f996ccd4ea8aa96867742d9a9dfd835c0b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:46:49 +0000 Subject: [PATCH 259/325] added header to separate mods --- lgsm/functions/command_mods_update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index d4233a43d..73827c50c 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -84,6 +84,7 @@ while [ ${installedmodsline} -le ${installedmodscount} ]; do fn_script_log_info "${modprettyname} will not be updated to preserve custom files" else echo "" + echo "==> Updating ${modprettyname}" fn_create_mods_dir fn_mods_clear_tmp_dir fn_mods_create_tmp_dir From b8ea04d06255f35116d473c25472f5051ae7c15f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Jan 2017 22:54:18 +0000 Subject: [PATCH 260/325] re arrainged to fix sm and mm not downloading --- lgsm/functions/mods_list.sh | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 566efedc1..4b586df1b 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -12,7 +12,20 @@ local commandname="MODS" local commandaction="List Mods" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -## Useful variables +# Get a proper URL for mods that don't provide a good one (optional) +fn_script_log_info "Retrieving latest mods URLs" +# Metamod +metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" +metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" +metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" +metamodurl="${metamoddownloadurl}/${metamodlatestfile}" +# Sourcemod +sourcemodmversion="1.8" +sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" +sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" +sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" +sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" + # Separator name modseparator="MOD" @@ -58,16 +71,3 @@ mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.gith # REQUIRED: Set all mods info into one array for convenience mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) -# Get a proper URL for mods that don't provide a good one (optional) -fn_script_log_info "Retrieving latest mods URLs" -# Metamod -metamodscrapeurl="http://www.gsptalk.com/mirror/sourcemod" -metamodlatestfile="$(wget "${metamodscrapeurl}/?MD" -q -O -| grep "mmsource" | grep "\-linux" | head -n1 | awk -F '>' '{ print $3 }' | awk -F '<' '{ print $1}')" -metamoddownloadurl="http://cdn.probablyaserver.com/sourcemod/" -metamodurl="${metamoddownloadurl}/${metamodlatestfile}" -# Sourcemod -sourcemodmversion="1.8" -sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/sourcemod-latest-linux" -sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" -sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" -sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" From bb99b30bd1b7d416151b4ab357214586c3c06d12 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 00:03:12 +0100 Subject: [PATCH 261/325] get mod info at the right time --- lgsm/functions/command_mods_install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 0519c75c8..de1be8046 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -72,7 +72,9 @@ while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done +# Get mod info currentmod="${usermodselect}" +fn_mod_get_info echo "" echo "Installing ${modprettyname}" @@ -100,7 +102,6 @@ fi ## Installation -fn_mod_get_info fn_create_mods_dir fn_mods_clear_tmp_dir fn_mods_create_tmp_dir @@ -114,4 +115,4 @@ fn_mods_clear_tmp_dir echo "${modprettyname} installed" fn_script_log_pass "${modprettyname} installed." -core_exit.sh \ No newline at end of file +core_exit.sh From 3c3d68fbdc18cb7794fbea76a67f7f3c7a3d628f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 00:23:37 +0100 Subject: [PATCH 262/325] check fails in the loop and echo the right files amount --- lgsm/functions/command_mods_remove.sh | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index e9c6031f3..3ea2c7e87 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -75,19 +75,17 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then rm -rf "${modinstalldir}/${currentfileremove}" local exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh + else + fn_print_ok_eol_nl + fi fi tput rc; tput el printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." ((modfileline++)) done -tput rc; tput ed; -echo -ne "sed ${modprettyname} ${modfileline} / ${modsfilelistsize}..." -if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh -else - fn_print_ok_eol_nl -fi sleep 0.5 # Remove file list From b62d58fe8515ae0d66fe53f3d1223bd9c1c22315 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 00:31:26 +0100 Subject: [PATCH 263/325] added missing fn_print_ok_eol_nl --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 3ea2c7e87..28a1a6a43 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -86,8 +86,8 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." ((modfileline++)) done +fn_print_ok_eol_nl sleep 0.5 - # Remove file list echo -en "removing ${modcommand}-files.txt..." sleep 0.5 From 75295065d2a8a6180334b73f678931e061d22324 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 13:59:29 +0100 Subject: [PATCH 264/325] comments & form revision --- lgsm/functions/mods_list.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 4b586df1b..abbe3299e 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -3,10 +3,10 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Lists and defines available mods for LGSM supported servers. -# Usage: To add a mod, you just need to add an array variable into fn_mods_info following the guide to set proper values. +# Description: Lists and defines available mods for LGSM supported servers; works along with mods_core.sh. +# Usage: To add a mod, you need to add an array variable following the guide to set proper values; # Usage: Then add this array to the mods_global_array. -# Usage: If needed, you can scrape to define the download URL inside the fn_mods_scrape_urls function. +# Usage: If needed, you can scrape the download URL first. local commandname="MODS" local commandaction="List Mods" @@ -26,10 +26,11 @@ sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" sourcemoddownloadurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}" sourcemodurl="${sourcemoddownloadurl}/${sourcemodlatestfile}" +# Define mods information (required) + # Separator name modseparator="MOD" -# Define mods information (required) # REQUIRED: mod_info_name=( MOD "modcommand" "Pretty Name" "URL" "filename" "modsubdirs" "LowercaseOn/Off" "/files/to/keep;" "/install/path" "ENGINES" "GAMES" "NOTGAMES" "AUTHOR_URL" "Short Description" ) # Example 1) Well made mod: mod_info_name=( MOD "awesomemod" "This is an Awesome Mod" "https://awesomemod.com/latest.zip" "awesomemod.zip" "0" "LowercaseOff" "OVERWRITE" "${systemdir}/addons" "source;unity3d;" "GAMES" "NOTGAMES" "https://awesomemod.com/" "This mod knows that 42 is the answer" ) # Example 2) Poorly made mod: mod_info_name=( MOD "stupidmod" "This is a stupid mod" "${crappymodurl}" "StupidMod.zip" "2" "LowercaseOn" "cfg;data/crappymod;" "${systemdir}" "source;" "GAMES" "Garry's mod;Counter-Strike: Source;" "This mod is dumber than dumb" ) @@ -38,17 +39,17 @@ modseparator="MOD" # [0] | MOD: separator, all mods must begin with it # [1] | "modcommand": the LGSM name and command to install the mod (must be unique and lowercase) # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user -# [3] | "URL": link to the file; can be a variable defined in fn_mods_nasty_urls (make sure curl can download it) +# [3] | "URL": link to the mod archive file; can be a variable previously defined while scraping a URL # [4] | "filename": the output filename -# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) -# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) +# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) +# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) -# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" to ignore the value or "NOUPDATE" to disallow updating +# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) # [12] | "AUTHOR_URL" is the author's website, displayed to the user when chosing mods to install -# [13] | "Short Description" a description showed to the user upon installation +# [13] | "Short Description" a description showed to the user upon installation/removal # Source mods mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) @@ -68,6 +69,5 @@ mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "https://raw.githubusercon mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-Hurtworld.zip" "Oxide-Hurtworld_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332" "Allows for the use of plugins" ) mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "https://raw.githubusercontent.com/OxideMod/Snapshots/master/Oxide-7DaysToDie.zip" "Oxide-7DaysToDie_Linux.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813" "Allows for the use of plugins" ) -# REQUIRED: Set all mods info into one array for convenience +# REQUIRED: Set all mods info into the global array mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) - From eb91545efc8ac4dacd8aa6aef835650d2a988ca2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:00:14 +0100 Subject: [PATCH 265/325] tab fix --- lgsm/functions/mods_list.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index abbe3299e..46fc8f046 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -41,10 +41,10 @@ modseparator="MOD" # [2] | "Pretty Name": the common name people use to call the mod that will be displayed to the user # [3] | "URL": link to the mod archive file; can be a variable previously defined while scraping a URL # [4] | "filename": the output filename -# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) -# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) +# [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) +# [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) -# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating +# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) From 9819ada0a49ecce4bf7d57560e182c1fef35b374 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:11:48 +0100 Subject: [PATCH 266/325] added fn_mod_tidy_files_list info --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 46fc8f046..730aeb081 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -44,7 +44,7 @@ modseparator="MOD" # [5] | "modsubdirs": in how many subdirectories is the mod (none is 0) (not used at release, but could be in the future) # [6] | "LowercaseOn/Off": LowercaseOff or LowercaseOn: enable/disable converting extracted files and directories to lowercase (some games require it) # [7] | "modinstalldir": the directory in which to install the mode ( use LGSM dir variables such as ${systemdir}) -# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating +# [8] | "/files/to/keep;", files & directories that should not be overwritten upon update, separated and ended with a semicolon; you can also use "OVERWRITE" value to ignore the value or "NOUPDATE" to disallow updating; for files to keep upon uninstall, see fn_mod_tidy_files_list from mods_core.sh # [9] | "Supported Engines;": list them according to LGSM ${engine} variables, separated and ended with a semicolon, or use ENGINES to ignore the value # [10] | "Supported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use GAMES to ignore the value # [11] | "Unsupported Games;": list them according to LGSM ${gamename} variables, separated and ended with a semicolon, or use NOTGAMES to ignore the value (useful to exclude a game when using Supported Engines) From d19313569594032224bf6447fb7b7dd6006ab8c6 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:23:47 +0100 Subject: [PATCH 267/325] check_logs.sh for mods commands --- lgsm/functions/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 255ab5ee1..577579171 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -34,7 +34,7 @@ do fi done -local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh command_update.sh command_validate.sh command_update_functions.sh command_email_test.sh ) +local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh command_update.sh command_validate.sh command_update_functions.sh command_email_test.sh command_mods_install.sh command_mods_update.sh command_mods_remove.sh ) for allowed_command in "${allowed_commands_array[@]}" do if [ "${allowed_command}" == "${function_selfname}" ]; then From ef05b348aeaa77fea09675c080d14864ec791e01 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:44:59 +0100 Subject: [PATCH 268/325] Comments, output and exits improvements --- lgsm/functions/mods_core.sh | 38 ++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 1d3edc48d..6169d95fb 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -112,9 +112,9 @@ fn_mod_add_list(){ fi } +# Prevent sensitive directories from being erased upon uninstall by removing them from: ${modcommand}-files.txt fn_mod_tidy_files_list(){ - # Prevent sensitive directories from being erased by removing them from: ${modcommand}-files.txt - # Check file validity + # Check file list validity fn_check_mod_files_list # Output to the user echo -ne "tidy up ${modcommand}-files.txt..." @@ -129,19 +129,18 @@ fn_mod_tidy_files_list(){ for ((filesindex=1; filesindex < removefromlistamount; filesindex++)); do # Put current file into test variable removefilevar="$(echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }')" - # Delete matching line(s) + # Delete line(s) matching exactly sed -i "/^${removefilevar}$/d" "${modsdir}/${modcommand}-files.txt" + # Exit on error local exitcode=$? if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Error while tidying line: ${removefilevar} from: ${modsdir}/${modcommand}-files.txt" + core_exit.sh break fi done - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - else - fn_print_ok_eol_nl - fi - + fn_print_ok_eol_nl # Sourcemod fix # Remove metamod from sourcemod fileslist if [ "${modcommand}" == "sourcemod" ]; then @@ -172,7 +171,6 @@ fn_mod_get_info(){ fi ((totalmods++)) done - fi # Exit the loop if job is done if [ "${modinfocommand}" == "1" ]; then @@ -192,9 +190,9 @@ fn_mod_get_info(){ # Define all variables for a mod at once when index is set to a separator fn_mods_define(){ if [ -z "$index" ]; then + fn_script_log_fatal "index variable not set. Please report an issue." fn_print_error "index variable not set. Please report an issue." echo "* https://github.com/GameServerManagers/LinuxGSM/issues" - exitcode="1" core_exit.sh fi modcommand="${mods_global_array[index+1]}" @@ -238,9 +236,7 @@ fn_mods_installed_list(){ fi } -# Checks if a mod is compatible for installation -# Provides available mods for installation -# Provides commands for mods installation +# Loops through mods_global_array to define available mods & provide available commands for mods installation fn_mods_available(){ # First, reset variables compatiblemodslist=() @@ -302,7 +298,7 @@ fn_compatible_mod_engines(){ enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" # If engine name matches if [ "${enginemodtest}" == "${engine}" ]; then - # Mod is compatible ! + # Mod is compatible! modcompatibleengine="1" fi done @@ -323,7 +319,7 @@ fn_not_compatible_mod_games(){ excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" # If engine name matches if [ "${excludegamemodtest}" == "${gamename}" ]; then - # Mod is compatible ! + # Mod is compatible! modeincompatiblegame="1" fi done @@ -411,6 +407,7 @@ fn_mods_clear_tmp_dir(){ fi } +# Counts how many mods were installed fn_mods_count_installed(){ if [ -f "${modsinstalledlistfullpath}" ]; then installedmodscount="$(wc -l < "${modsinstalledlistfullpath}")" @@ -419,12 +416,13 @@ fn_mods_count_installed(){ fi } -# Exit if no mods were installed +# Exits if no mods were installed fn_mods_check_installed(){ # Count installed mods fn_mods_count_installed # If no mods are found if [ ${installedmodscount} -eq 0 ]; then + echo "" fn_print_information_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" fn_script_log_info "No installed mods or addons were found." @@ -432,6 +430,7 @@ fn_mods_check_installed(){ fi } +# Checks that mod files list exists and isn't empty fn_check_mod_files_list(){ # File list must exist and be valid before any operation on it if [ -f "${modsdir}/${modcommand}-files.txt" ]; then @@ -451,6 +450,7 @@ fn_check_mod_files_list(){ fi } -# Database initialisation +## Database initialisation + mods_list.sh -fn_mods_available \ No newline at end of file +fn_mods_available From 2b302fc0ac550e298514511b9a3fcd31ad725aac Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 14:58:02 +0100 Subject: [PATCH 269/325] "User selected to continue" to be in check loop --- lgsm/functions/command_mods_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index de1be8046..4e563b7b9 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -96,8 +96,8 @@ if [ -f "${modsinstalledlistfullpath}" ]; then * ) echo "Please answer yes or no.";; esac done + fn_script_log_info "User selected to continue" fi -fn_script_log_info "User selected to continue" fi ## Installation From a86030b551353596c91e710986d75820f9a7d100 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 18:40:25 +0100 Subject: [PATCH 270/325] Total mods fix --- lgsm/functions/mods_core.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 6169d95fb..0ccc548de 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -169,7 +169,7 @@ fn_mod_get_info(){ modinfocommand="1" break fi - ((totalmods++)) + ((totalmodsavailable++)) done fi # Exit the loop if job is done @@ -231,8 +231,8 @@ fn_mods_installed_list(){ # Increment line check ((installedmodsline++)) done - if [ -n "${totalmods}" ] ;then - fn_script_log_info "${totalmods} addons/mods are already installed" + if [ -n "${installedmodscount}" ] ;then + fn_script_log_info "${installedmodscount} addons/mods are already installed" fi } From 94c1b57f8561ea5303d11df91174711047c589a9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 18:41:57 +0100 Subject: [PATCH 271/325] total mods fix --- lgsm/functions/mods_core.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 0ccc548de..8d0eaf19d 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -169,7 +169,6 @@ fn_mod_get_info(){ modinfocommand="1" break fi - ((totalmodsavailable++)) done fi # Exit the loop if job is done From 0ddc146631cb4af34cc17c9adf3153ac2277e5d2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 18:45:36 +0100 Subject: [PATCH 272/325] total mods fix --- lgsm/functions/command_mods_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 4e563b7b9..f8e5a40da 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -48,7 +48,7 @@ while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do echo -e " * ${cyan}${displayedmodcommand}${default}" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" - ((totalmods++)) + ((totalmodsavailable++)) done # If no mods are available for a specific game @@ -57,7 +57,7 @@ if [ -z "${compatiblemodslist}" ]; then fn_script_log_info "No mods are currently available for ${gamename}." core_exit.sh fi -fn_script_log_info "${totalmods} addons/mods are available for install" +fn_script_log_info "${totalmodsavailable} addons/mods are available for install" ## User selects a mod echo "" From 82441e5d6db0cd520e3d7798eb55640a7bef9f39 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 18:57:10 +0100 Subject: [PATCH 273/325] ((totalmodsinstalled++)) not needed anymore --- lgsm/functions/command_mods_install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index f8e5a40da..7e76ac727 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -26,7 +26,6 @@ if [ ${installedmodscount} -gt 0 ]; then fn_mod_get_info # Display mod info to the user echo -e " * \e[1m${green}${modcommand}${default}${default}" - ((totalmodsinstalled++)) done echo "" fi From f1c753d4159122728f7d8a7b4a99375c102fad92 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 26 Jan 2017 19:04:41 +0100 Subject: [PATCH 274/325] keep files usually customized for ACF mod --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 730aeb081..8b0beb604 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -59,7 +59,7 @@ mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/ mod_info_ulx=( MOD "ulx" "ULX" "https://codeload.github.com/TeamUlysses/ulx/zip/master" "ulx-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Admin Panel (requires ULib)" ) mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archive/master.zip" "utime-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Keep track of players play time" ) mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) -mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) +mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "acf-master/lua/acf/shared/guns;" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) From ae864bb92bba5cc040ee96c9b1dc6cb8a90c8087 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 19:46:00 +0000 Subject: [PATCH 275/325] More UI modifications --- lgsm/functions/command_mods_remove.sh | 19 +++++++++---------- lgsm/functions/mods_core.sh | 4 ++-- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 28a1a6a43..1a0799122 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -74,19 +74,18 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then rm -rf "${modinstalldir}/${currentfileremove}" - local exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl - fi + ((exitcode=$?)) fi tput rc; tput el - printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." + printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." ((modfileline++)) done -fn_print_ok_eol_nl +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi sleep 0.5 # Remove file list echo -en "removing ${modcommand}-files.txt..." @@ -102,7 +101,7 @@ else fi # Remove mods from installed mods list -echo -en "removing ${modcommand} from ${modslockfile}..." +echo -en "removing ${modcommand} from ${modsinstalledlist}..." sleep 0.5 fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 6169d95fb..5d42e15e0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -423,9 +423,9 @@ fn_mods_check_installed(){ # If no mods are found if [ ${installedmodscount} -eq 0 ]; then echo "" - fn_print_information_nl "No installed mods or addons were found" + fn_print_failure_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" - fn_script_log_info "No installed mods or addons were found." + fn_script_log_fail "No installed mods or addons were found." core_exit.sh fi } From 8acf2189a919ef08f2618d5a3e6c46ea55b7e163 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 19:48:27 +0000 Subject: [PATCH 276/325] corrected script_log --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 959476b2d..5fa8e21c9 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -26,7 +26,7 @@ fn_mod_install_files(){ # Check if variable is valid checking if file has been downloaded and exists if [ ! -f "${modstmpdir}/${modfilename}" ]; then fn_print_failure "An issue occurred downloading ${modprettyname}" - fn_script_log_fail "An issue occurred downloading ${modprettyname}" + fn_script_log_fatal "An issue occurred downloading ${modprettyname}" core_exit.sh fi if [ ! -d "${extractdir}" ]; then From d83666625d217d438b071fd67cbca6369552fcb3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 20:44:10 +0000 Subject: [PATCH 277/325] update wording for script log --- lgsm/functions/command_mods_install.sh | 4 ++-- lgsm/functions/command_mods_remove.sh | 2 +- lgsm/functions/command_mods_update.sh | 24 +++++++++++------------- lgsm/functions/core_dl.sh | 8 ++++---- lgsm/functions/mods_core.sh | 4 ++-- 5 files changed, 20 insertions(+), 22 deletions(-) diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 7e76ac727..2d85c12f6 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -25,7 +25,7 @@ if [ ${installedmodscount} -gt 0 ]; then currentmod="${installedmodslist[llindex]}" fn_mod_get_info # Display mod info to the user - echo -e " * \e[1m${green}${modcommand}${default}${default}" + echo -e " * ${green}${modcommand}${default}${default}" done echo "" fi @@ -43,7 +43,7 @@ while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" # Output mods to the user - echo -e "\e[1m${displayedmodname}${default} - ${displayedmoddescription} - ${displayedmodsite}" + echo -e "${displayedmodname} - ${displayedmoddescription} - ${displayedmodsite}" echo -e " * ${cyan}${displayedmodcommand}${default}" # Increment index from the amount of values we just displayed let "compatiblemodslistindex+=4" diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 1a0799122..adf30adea 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -26,7 +26,7 @@ for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do # Get mod info fn_mod_get_info # Display mod info to the user - echo -e "${cyan}${modcommand}${default} - \e[1m${modprettyname}${default} - ${moddescription}" + echo -e "${red}${modcommand}${default} - ${modprettyname} - ${moddescription}" done echo "" diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 73827c50c..0b12e04aa 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -16,27 +16,25 @@ mods_core.sh # For that matter, remove cfg files after extraction before copying them to destination fn_remove_cfg_files(){ if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then - fn_print_dots "Preventing overwriting of ${modprettyname} config files" - fn_script_log "Preventing overwriting of ${modprettyname} config files" + echo -e "the following files/directories will be preserved:" sleep 0.5 # Count how many files there are to remove - removefilesamount="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" + filestopreserve="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalues of "modkeepfiles" using the ";" separator - for ((removefilesindex=1; removefilesindex < ${removefilesamount}; removefilesindex++)); do + for ((preservefilesindex=1; preservefilesindex < ${filestopreserve}; preservefilesindex++)); do # Put the current file we are looking for into a variable - filetoremove="$( echo "${modkeepfiles}" | awk -F ';' -v x=${removefilesindex} '{ print $x }' )" + filetopreserve="$(echo "${modkeepfiles}" | awk -F ';' -v x=${preservefilesindex} '{ print $x }' )" + echo -e " * serverfiles/${filetopreserve}" # If it matches an existing file that have been extracted delete the file - if [ -f "${extractdir}/${filetoremove}" ]||[ -d "${extractdir}/${filetoremove}" ]; then - rm -r "${extractdir}/${filetoremove}" + if [ -f "${extractdir}/${filetopreserve}" ]||[ -d "${extractdir}/${filetopreserve}" ]; then + rm -r "${extractdir}/${filetopreserve}" # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then touch "${modsdir}/.removedfiles.tmp" fi - echo "${filetoremove}" >> "${modsdir}/.removedfiles.tmp" + echo "${filetopreserve}" >> "${modsdir}/.removedfiles.tmp" fi done - fn_print_ok "Preventing overwriting of ${modprettyname} config files" - sleep 0.5 fi } @@ -60,12 +58,12 @@ for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do core_exit.sh # If the mod won't get updated elif [ "${modkeepfiles}" == "NOUPDATE" ]; then - echo -e " * \e[31m${modprettyname}${default} (won't be updated)" + echo -e " * ${red}{modprettyname}${default} (won't be updated)" # If the mode is just overwritten elif [ "${modkeepfiles}" == "OVERWRITE" ]; then - echo -e " * \e[1m${modprettyname}${default} (overwrite)" + echo -e " * ${modprettyname} (overwrite)" else - echo -e " * ${yellow}${modprettyname}${default} (common custom files remain untouched)" + echo -e " * ${yellow}${modprettyname}${default} (retain common custom files)" fi done sleep 1 diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index f7768a7cf..aad8f1963 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -80,12 +80,12 @@ fn_fetch_trap(){ echo "" echo -ne "downloading ${filename}..." fn_print_canceled_eol_nl - fn_script_log_info "downloading ${filename}...CANCELED" + fn_script_log_info "Downloading ${filename}...CANCELED" sleep 1 rm -f "${filedir}/${filename}" | tee -a "${scriptlog}" echo -ne "downloading ${filename}..." fn_print_removed_eol_nl - fn_script_log_info "downloading ${filename}...REMOVED" + fn_script_log_info "Downloading ${filename}...REMOVED" core_exit.sh } @@ -130,7 +130,7 @@ fn_fetch_file(){ if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl if [ -f "${scriptlog}" ]; then - fn_script_log_fatal "downloading ${filename}: FAIL" + fn_script_log_fatal "Downloading ${filename}: FAIL" fi echo -e "${fileurl}" | tee -a "${scriptlog}" echo "${curlcmd}" | tee -a "${scriptlog}" @@ -138,7 +138,7 @@ fn_fetch_file(){ else fn_print_ok_eol_nl if [ -f "${scriptlog}" ]; then - fn_script_log_pass "downloading ${filename}: OK" + fn_script_log_pass "Downloading ${filename}: OK" fi fi # remove trap diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 5fa8e21c9..1eb5984b0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -41,7 +41,7 @@ fn_mod_lowercase(){ echo -ne "converting ${modprettyname} files to lowercase..." sleep 0.5 - fn_script_log "Converting ${modprettyname} files to lowercase" + fn_script_log_info "Converting ${modprettyname} files to lowercase" files=$(find "${extractdir}" -depth | wc -l) echo -en "\r" while read -r src; do @@ -231,7 +231,7 @@ fn_mods_installed_list(){ ((installedmodsline++)) done if [ -n "${installedmodscount}" ] ;then - fn_script_log_info "${installedmodscount} addons/mods are already installed" + fn_script_log_info "${installedmodscount} addons/mods are currently installed" fi } From 8311e2c972aa186c72a26671bac474ed3e6e65c4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 20:48:09 +0000 Subject: [PATCH 278/325] script_log to info --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 0b12e04aa..e93303016 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -105,6 +105,6 @@ while [ ${installedmodsline} -le ${installedmodscount} ]; do done echo "" fn_print_ok_nl "Mods update complete" -fn_script_log "Mods update complete" +fn_script_log_info "Mods update complete" core_exit.sh From b9f47518b955edccfba96f99f5111cbee28dfa40 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 20:52:49 +0000 Subject: [PATCH 279/325] uf was missing a commandname --- lgsm/functions/command_update_functions.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_update_functions.sh b/lgsm/functions/command_update_functions.sh index 538a8dee8..e3d96d378 100644 --- a/lgsm/functions/command_update_functions.sh +++ b/lgsm/functions/command_update_functions.sh @@ -4,6 +4,7 @@ # Website: https://gameservermanagers.com # Description: Deletes the functions dir to allow re-downloading of functions from GitHub. +local commandname="UPDATE LGSM" local commandaction="Update LGSM" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" From bea65fb35ac102fa95b984013d8ecacd5e47f4f4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 21:11:25 +0000 Subject: [PATCH 280/325] script log message capital --- lgsm/functions/command_backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 8e18a619b..b4bff70b0 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -16,12 +16,12 @@ fn_backup_trap(){ echo "" echo -ne "backup ${backupname}.tar.gz..." fn_print_canceled_eol_nl - fn_script_log_info "backup ${backupname}.tar.gz: CANCELED" + fn_script_log_info "Backup ${backupname}.tar.gz: CANCELED" sleep 1 rm -f "${backupdir}/${backupname}.tar.gz" | tee -a "${scriptlog}" echo -ne "backup ${backupname}.tar.gz..." fn_print_removed_eol_nl - fn_script_log_info "backup ${backupname}.tar.gz: REMOVED" + fn_script_log_info "Backup ${backupname}.tar.gz: REMOVED" # Remove lock file rm -f "${tmpdir}/.backup.lock" core_exit.sh From 3ea100cc723a11797160f9743303862527e442c0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 21:18:26 +0000 Subject: [PATCH 281/325] improvements to script log messages --- lgsm/functions/command_mods_remove.sh | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index adf30adea..7b96503ec 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -59,7 +59,7 @@ fn_mod_get_info fn_check_mod_files_list # Uninstall the mod -fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}" +fn_script_log_info "Removing ${modsfilelistsize} files from ${modprettyname}" echo -e "removing ${modprettyname}" echo -e "* ${modsfilelistsize} files to be removed" echo -e "* location: ${modinstalldir}" @@ -71,10 +71,16 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # Current line defines current file to remove currentfileremove="$(sed "${modfileline}q;d" "${modsdir}/${modcommand}-files.txt")" # If file or directory exists, then remove it - fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" + if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then rm -rf "${modinstalldir}/${currentfileremove}" ((exitcode=$?)) + if [ ${exitcode} -ne 0 ]; then + fn_script_log_fatal "Removing ${modinstalldir}/${currentfileremove}" + break + else + fn_script_log_pass "Removing ${modinstalldir}/${currentfileremove}" + fi fi tput rc; tput el printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." @@ -90,26 +96,29 @@ sleep 0.5 # Remove file list echo -en "removing ${modcommand}-files.txt..." sleep 0.5 -fn_script_log "Removing: ${modsdir}/${modcommand}-files.txt" rm -rf "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then + fn_script_log_fatal "Removing ${modsdir}/${modcommand}-files.txt" fn_print_fail_eol_nl core_exit.sh else + fn_script_log_pass "Removing ${modsdir}/${modcommand}-files.txt" fn_print_ok_eol_nl fi # Remove mods from installed mods list echo -en "removing ${modcommand} from ${modsinstalledlist}..." sleep 0.5 -fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" + sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" local exitcode=$? if [ ${exitcode} -ne 0 ]; then + fn_script_loga_fatal "Removing ${modcommand} from ${modsinstalledlist}" fn_print_fail_eol_nl core_exit.sh else + fn_script_loga_pass "Removing ${modcommand} from ${modsinstalledlist}" fn_print_ok_eol_nl fi From bc8083218987d3877c33c0f7bd98bdcd70fbaeaa Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 05:31:13 +0100 Subject: [PATCH 282/325] fn_getopt_rustserver (wipe command) --- lgsm/functions/core_getopt.sh | 88 +++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index faa9c7011..495cc7825 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -574,6 +574,92 @@ case "${getopt}" in esac } +fn_getopt_rustserver(){ +case "${getopt}" in + st|start) + command_start.sh;; + sp|stop) + command_stop.sh;; + r|restart) + command_restart.sh;; + u|update) + command_update.sh;; + fu|force-update|update-restart) + forceupdate=1; + command_update.sh;; + uf|update-functions) + command_update_functions.sh;; + v|validate) + command_validate.sh;; + m|monitor) + command_monitor.sh;; + ta|test-alert) + command_test_alert.sh;; + dt|details) + command_details.sh;; + pd|postdetails) + command_postdetails.sh;; + b|backup) + command_backup.sh;; + c|console) + command_console.sh;; + d|debug) + command_debug.sh;; + dev|dev-debug) + command_dev_debug.sh;; + i|install) + command_install.sh;; + ai|auto-install) + fn_autoinstall;; + mi|mods-install) + command_mods_install.sh;; + mu|mods-update) + command_mods_update.sh;; + mr|mods-remove) + command_mods_remove.sh;; + wi|wipe + command_wipe.sh + dd|detect-deps) + command_dev_detect_deps.sh;; + dg|detect-glibc) + command_dev_detect_glibc.sh;; + dl|detect-ldd) + command_dev_detect_ldd.sh;; + *) + if [ -n "${getopt}" ]; then + echo -e "${red}Unknown command${default}: $0 ${getopt}" + exitcode=2 + fi + echo "Usage: $0 [option]" + echo "${gamename} - Linux Game Server Manager - Version ${version}" + echo "https://gameservermanagers.com/${selfname}" + echo -e "" + echo -e "${lightyellow}Commands${default}" + { + echo -e "${blue}start\t${default}st |Start the server." + echo -e "${blue}stop\t${default}sp |Stop the server." + echo -e "${blue}restart\t${default}r |Restart the server." + echo -e "${blue}update\t${default}u |Checks and applies updates from SteamCMD." + echo -e "${blue}force-update\t${default}fu |Bypasses the check and applies updates from SteamCMD." + echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded." + echo -e "${blue}validate\t${default}v |Validate server files with SteamCMD." + echo -e "${blue}monitor\t${default}m |Checks that the server is running." + echo -e "${blue}test-alert\t${default}ta |Sends test alert." + echo -e "${blue}details\t${default}dt |Displays useful information about the server." + echo -e "${blue}postdetails\t${default}pd |Post stripped details to pastebin (for support)" + echo -e "${blue}backup\t${default}b |Create archive of the server." + echo -e "${blue}console\t${default}c |Console allows you to access the live view of a server." + echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." + echo -e "${blue}install\t${default}i |Install the server." + echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." + echo -e "${blue}mods-install\t${default}mi |View and install available mods/addons." + echo -e "${blue}mods-update\t${default}mu |Update installed mods/addons." + echo -e "${blue}mods-remove\t${default}mr |Remove installed mods/addons." + echo -e "${blue}wipe\t${default}wi |Wipe your Rust server." + } | column -s $'\t' -t + esac +} + fn_getopt_unreal(){ case "${getopt}" in st|start) @@ -796,6 +882,8 @@ elif [ "${gamename}" == "Mumble" ]; then # Teamspeak 3 elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_getopt_teamspeak3 +elif [ "${gamename}" == "Rust" ]; then + fn_getopt_rustserver # Unreal 2 Engine elif [ "${engine}" == "unreal2" ]; then if [ "${gamename}" == "Unreal Tournament 2004" ]; then From 694b27b35ae81e51c4de42aec626a64b7f0f6c87 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 05:32:32 +0100 Subject: [PATCH 283/325] command_wipe.sh --- lgsm/functions/core_functions.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index cd7aa07c7..a84163921 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -212,6 +212,10 @@ functionfile="${FUNCNAME}" fn_fetch_function } +command_wipe.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} # Checks From 63e0c184c320952af0612ada908fc90b96910b72 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 06:05:53 +0100 Subject: [PATCH 284/325] file init --- lgsm/functions/command_wipe.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lgsm/functions/command_wipe.sh diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh new file mode 100644 index 000000000..2bdcf9c76 --- /dev/null +++ b/lgsm/functions/command_wipe.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# LGSM command_backup.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Wipes server data for Rust, useful after monthly updates + From e830e8f9428f4045c388c1a673f6a028f713f51f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:29:09 +0100 Subject: [PATCH 285/325] various fixes --- lgsm/functions/mods_core.sh | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 1eb5984b0..9fd731c97 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -121,7 +121,7 @@ fn_mod_tidy_files_list(){ sleep 0.5 fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) - removefromlist="cfg;addons;" + removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data/Managed;RustDedicated_Data/Managed/x86;" # Loop through files to remove from file list, # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" @@ -344,6 +344,21 @@ fn_mod_compatible_test(){ # Create mods files and directories if it doesn't exist fn_create_mods_dir(){ + # Create lgsm data modsdir + if [ ! -d "${modsdir}" ];then + echo "creating lgsm mods data directory ${modsdir}..." + mkdir -p "${modsdir}" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modsdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modsdir}" + fi + sleep 0.5 + fi # Create mod install directory if [ ! -d "${modinstalldir}" ]; then echo "creating mods install directory ${modinstalldir}..." @@ -351,11 +366,11 @@ fn_create_mods_dir(){ exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - fn_script_log_fatal "Creating mod download dir ${modinstalldir}" + fn_script_log_fatal "Creating mod install directory ${modinstalldir}" core_exit.sh else fn_print_ok_eol_nl - fn_script_log_pass "Creating mod download dir ${modinstalldir}" + fn_script_log_pass "Creating mod install directory ${modinstalldir}" fi sleep 0.5 fi From 7b28f2b609acb5264dfe545883e6432d04031d41 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:30:49 +0100 Subject: [PATCH 286/325] missing ;; --- lgsm/functions/core_getopt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 495cc7825..121c7c244 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -618,7 +618,7 @@ case "${getopt}" in mr|mods-remove) command_mods_remove.sh;; wi|wipe - command_wipe.sh + command_wipe.sh;; dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) From 332bcee4840be3d27aba2eb917881b090e6426a1 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:33:03 +0100 Subject: [PATCH 287/325] missing ), damn! --- lgsm/functions/core_getopt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 121c7c244..06dbccc43 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -617,7 +617,7 @@ case "${getopt}" in command_mods_update.sh;; mr|mods-remove) command_mods_remove.sh;; - wi|wipe + wi|wipe) command_wipe.sh;; dd|detect-deps) command_dev_detect_deps.sh;; From 451191c4777f733992917f3d8cfc480054d2cc4d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:42:14 +0100 Subject: [PATCH 288/325] escape for sed & fn_script_log_fail > fn_script_log_error --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9fd731c97..f6319f284 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -121,7 +121,7 @@ fn_mod_tidy_files_list(){ sleep 0.5 fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) - removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data/Managed;RustDedicated_Data/Managed/x86;" + removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;" # Loop through files to remove from file list, # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" @@ -439,7 +439,7 @@ fn_mods_check_installed(){ echo "" fn_print_failure_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" - fn_script_log_fail "No installed mods or addons were found." + fn_script_log_error "No installed mods or addons were found." core_exit.sh fi } From c13ab40e0d98f2aefe4683aa7673107092ebe0af Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:45:10 +0100 Subject: [PATCH 289/325] don't erase rust x64 dir --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index f6319f284..8c5e858ab 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -121,7 +121,7 @@ fn_mod_tidy_files_list(){ sleep 0.5 fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) - removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;" + removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;RustDedicated_Data\/Managed\/x64" # Loop through files to remove from file list, # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" From f8072b69ded7034b813a2a20fcb9ea4d9eaa2fb0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:48:33 +0100 Subject: [PATCH 290/325] typo: loga > log --- lgsm/functions/command_mods_remove.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 7b96503ec..d63a00101 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -114,11 +114,11 @@ sleep 0.5 sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" local exitcode=$? if [ ${exitcode} -ne 0 ]; then - fn_script_loga_fatal "Removing ${modcommand} from ${modsinstalledlist}" + fn_script_log_fatal "Removing ${modcommand} from ${modsinstalledlist}" fn_print_fail_eol_nl core_exit.sh else - fn_script_loga_pass "Removing ${modcommand} from ${modsinstalledlist}" + fn_script_log_pass "Removing ${modcommand} from ${modsinstalledlist}" fn_print_ok_eol_nl fi From c972ef09257094100baf1279cec920b660f6c56e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:51:32 +0100 Subject: [PATCH 291/325] missing semicolon for x64 dir to preserve --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 8c5e858ab..1e36285e1 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -121,7 +121,7 @@ fn_mod_tidy_files_list(){ sleep 0.5 fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) - removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;RustDedicated_Data\/Managed\/x64" + removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;RustDedicated_Data\/Managed\/x64;" # Loop through files to remove from file list, # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" From 462a653b36ff4efc6ef7a49ed4579dbc74070840 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 08:36:46 +0100 Subject: [PATCH 292/325] attempt for permission errors in /sys fix||alert --- lgsm/functions/check_permissions.sh | 91 +++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 1411e649c..987faef7f 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -126,5 +126,96 @@ fn_check_permissions(){ fi } +## The following fn_sys_perm_* functions checks for permission errors in /sys directory + +# Checks for permission errors in /sys directory +fn_sys_perm_errors(){ + # Reset test variables + sysdirpermerror="0" + classdirpermerror="0" + netdirpermerror="0" + # Check permissions + if [ ! -r "/sys" ]||[ ! -x "/sys" ]; then + sysdirpermerror="1" + fi + if [ ! -r "/sys/class" ]||[ ! -x "/sys/class" ]; then + classdirpermerror="1" + if [ ! -r "/sys/class/net" ]||[ ! -x "sys/class/net" ]; then + netdirpermerror="1" + fi +} + +# Displays /sys related permission errors to the user +fn_sys_perm_error_display(){ + # /sys, /sys/class and /sys/class/net should be readable & executable + # If any error was found + if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then + fn_print_error_nl "Permission error(s) found:" + fn_script_log_error "Permission error(s) found:" + if [ "${sysdirpermerror}" == "1" ]; then + echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" + fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" + fi + if [ "${classdirpermerror}" == "1" ]; then + echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + fi + if [ "${netdirpermerror}" == "1" ]; then + echo " * /sys/class/net permissions are $(stat -c %a /sys/class) instead of expected 755" + fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class) instead of expected 755" + fi + echo "" + fn_print_information_nl "This error causes servers to fail starting properly" + fn_script_log_info "This error causes servers to fail starting properly." +} + +# Attempt to fix /sys related permission errors if sudo is available, exits otherwise +fn_fix_sys_perm_errors(){ + sudo -v > /dev/null 2>&1 + iif [ $? -eq 0 ]; then + fn_print_information_nl "Automatically fixing permissions" + fn_script_log_info "Automatically fixing permissions." + if [ "${sysdirpermerror}" == "1" ]; then + sudo chmod a+rx "/sys" + fi + if [ "${classdirpermerror}" == "1" ]; then + sudo chmod a+rx "/sys/class" + fi + if [ "${netdirpermerror}" == "1" ]; then + sudo a+rx "/sys/class/net" + fi + else + fn_fix_sys_perm_manually_msg + fi + # Run check again to see if it's fixed + fn_sys_perm_errors + if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then + fn_print_error "Could not fix permissions" + fn_script_log_error "Could not fix permissions." + fn_fix_sys_perm_manually_msg + else + fn_print_ok "Automatically fixing permissions" + fi +} + +# Display a message on how to fix the issue manually +fn_fix_sys_perm_manually_msg(){ + echo "" + fn_print_information_nl "To fix this issue, run this command as root:" + fn_script_log_info "To fix this issue, run this command as root:" + echo " * chmod a+rx /sys /sys/class /sys/class/net" + fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" + core_exit.sh +} + +# Run perm error detect & fix/alert functions on /sys directories +fn_fix_sus_perm_run(){ + fn_sys_perm_errors + fn_sys_perm_error_display + fn_fix_sys_perm_errors +} + +## Run checks fn_check_ownership fn_check_permissions +fn_fix_sus_perm_run From 6bcf93e218e98591548124d627c719cea7838bb9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 08:41:58 +0100 Subject: [PATCH 293/325] fixes & rework perms on /sys --- lgsm/functions/check_permissions.sh | 34 +++++++++++++++-------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 987faef7f..aaf75939a 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -140,6 +140,7 @@ fn_sys_perm_errors(){ fi if [ ! -r "/sys/class" ]||[ ! -x "/sys/class" ]; then classdirpermerror="1" + fi if [ ! -r "/sys/class/net" ]||[ ! -x "sys/class/net" ]; then netdirpermerror="1" fi @@ -167,12 +168,13 @@ fn_sys_perm_error_display(){ echo "" fn_print_information_nl "This error causes servers to fail starting properly" fn_script_log_info "This error causes servers to fail starting properly." + fi } # Attempt to fix /sys related permission errors if sudo is available, exits otherwise -fn_fix_sys_perm_errors(){ +fn_sys_perm_errors_fix(){ sudo -v > /dev/null 2>&1 - iif [ $? -eq 0 ]; then + if [ $? -eq 0 ]; then fn_print_information_nl "Automatically fixing permissions" fn_script_log_info "Automatically fixing permissions." if [ "${sysdirpermerror}" == "1" ]; then @@ -184,22 +186,22 @@ fn_fix_sys_perm_errors(){ if [ "${netdirpermerror}" == "1" ]; then sudo a+rx "/sys/class/net" fi + # Run check again to see if it's fixed + fn_sys_perm_errors + if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then + fn_print_error "Could not fix permissions" + fn_script_log_error "Could not fix permissions." + fn_sys_perm_fix_manually_msg + else + fn_print_ok "Automatically fixing permissions" + fi else - fn_fix_sys_perm_manually_msg - fi - # Run check again to see if it's fixed - fn_sys_perm_errors - if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_error "Could not fix permissions" - fn_script_log_error "Could not fix permissions." - fn_fix_sys_perm_manually_msg - else - fn_print_ok "Automatically fixing permissions" + fn_sys_perm_fix_manually_msg fi } # Display a message on how to fix the issue manually -fn_fix_sys_perm_manually_msg(){ +fn_sys_perm_fix_manually_msg(){ echo "" fn_print_information_nl "To fix this issue, run this command as root:" fn_script_log_info "To fix this issue, run this command as root:" @@ -209,13 +211,13 @@ fn_fix_sys_perm_manually_msg(){ } # Run perm error detect & fix/alert functions on /sys directories -fn_fix_sus_perm_run(){ +fn_fix_sum_perm_run(){ fn_sys_perm_errors fn_sys_perm_error_display - fn_fix_sys_perm_errors + fn_sys_perm_errors_fix } ## Run checks fn_check_ownership fn_check_permissions -fn_fix_sus_perm_run +fn_fix_sum_perm_run From 0ba392d4902233520e3f6d66ea3e0195b1d02f18 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 08:51:50 +0100 Subject: [PATCH 294/325] typo fixes --- lgsm/functions/check_permissions.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index aaf75939a..664a5f63b 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -141,7 +141,7 @@ fn_sys_perm_errors(){ if [ ! -r "/sys/class" ]||[ ! -x "/sys/class" ]; then classdirpermerror="1" fi - if [ ! -r "/sys/class/net" ]||[ ! -x "sys/class/net" ]; then + if [ ! -r "/sys/class/net" ]||[ ! -x "/sys/class/net" ]; then netdirpermerror="1" fi } @@ -162,8 +162,8 @@ fn_sys_perm_error_display(){ fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" fi if [ "${netdirpermerror}" == "1" ]; then - echo " * /sys/class/net permissions are $(stat -c %a /sys/class) instead of expected 755" - fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class) instead of expected 755" + echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" + fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" fi echo "" fn_print_information_nl "This error causes servers to fail starting properly" From 416d15e76e7e994b34ffd55b9834fd8b74395624 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 08:59:14 +0100 Subject: [PATCH 295/325] Ordering/naming to make more sense --- lgsm/functions/check_permissions.sh | 76 ++++++++++++++--------------- 1 file changed, 37 insertions(+), 39 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 664a5f63b..087e019cc 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -129,7 +129,7 @@ fn_check_permissions(){ ## The following fn_sys_perm_* functions checks for permission errors in /sys directory # Checks for permission errors in /sys directory -fn_sys_perm_errors(){ +fn_sys_perm_errors_detect(){ # Reset test variables sysdirpermerror="0" classdirpermerror="0" @@ -146,29 +146,14 @@ fn_sys_perm_errors(){ fi } -# Displays /sys related permission errors to the user -fn_sys_perm_error_display(){ - # /sys, /sys/class and /sys/class/net should be readable & executable - # If any error was found - if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_error_nl "Permission error(s) found:" - fn_script_log_error "Permission error(s) found:" - if [ "${sysdirpermerror}" == "1" ]; then - echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" - fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" - fi - if [ "${classdirpermerror}" == "1" ]; then - echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" - fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" - fi - if [ "${netdirpermerror}" == "1" ]; then - echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" - fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" - fi - echo "" - fn_print_information_nl "This error causes servers to fail starting properly" - fn_script_log_info "This error causes servers to fail starting properly." - fi +# Display a message on how to fix the issue manually +fn_sys_perm_fix_manually_msg(){ + echo "" + fn_print_information_nl "To fix this issue, run this command as root:" + fn_script_log_info "To fix this issue, run this command as root:" + echo " * chmod a+rx /sys /sys/class /sys/class/net" + fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" + core_exit.sh } # Attempt to fix /sys related permission errors if sudo is available, exits otherwise @@ -187,7 +172,7 @@ fn_sys_perm_errors_fix(){ sudo a+rx "/sys/class/net" fi # Run check again to see if it's fixed - fn_sys_perm_errors + fn_sys_perm_errors_detect if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error "Could not fix permissions" fn_script_log_error "Could not fix permissions." @@ -200,24 +185,37 @@ fn_sys_perm_errors_fix(){ fi } -# Display a message on how to fix the issue manually -fn_sys_perm_fix_manually_msg(){ - echo "" - fn_print_information_nl "To fix this issue, run this command as root:" - fn_script_log_info "To fix this issue, run this command as root:" - echo " * chmod a+rx /sys /sys/class /sys/class/net" - fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" - core_exit.sh +# Processes to the /sys related permission errors check & fix/info +fn_sys_perm_error_process(){ + fn_sys_perm_errors + # /sys, /sys/class and /sys/class/net should be readable & executable + # If any error was found + if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then + fn_print_error_nl "Permission error(s) found:" + fn_script_log_error "Permission error(s) found:" + if [ "${sysdirpermerror}" == "1" ]; then + echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" + fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" + fi + if [ "${classdirpermerror}" == "1" ]; then + echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + fi + if [ "${netdirpermerror}" == "1" ]; then + echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" + fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" + fi + echo "" + fn_print_information_nl "This error causes servers to fail starting properly" + fn_script_log_info "This error causes servers to fail starting properly." + # Run the fix + fn_sys_perm_errors_fix + fi } # Run perm error detect & fix/alert functions on /sys directories -fn_fix_sum_perm_run(){ - fn_sys_perm_errors - fn_sys_perm_error_display - fn_sys_perm_errors_fix -} ## Run checks fn_check_ownership fn_check_permissions -fn_fix_sum_perm_run +fn_sys_perm_error_process From 369f5cc9519980838192007b7611514bdda058b2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:01:14 +0100 Subject: [PATCH 296/325] comments location & func name --- lgsm/functions/check_permissions.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 087e019cc..10f9ce701 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -135,6 +135,7 @@ fn_sys_perm_errors_detect(){ classdirpermerror="0" netdirpermerror="0" # Check permissions + # /sys, /sys/class and /sys/class/net should be readable & executable if [ ! -r "/sys" ]||[ ! -x "/sys" ]; then sysdirpermerror="1" fi @@ -176,19 +177,20 @@ fn_sys_perm_errors_fix(){ if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error "Could not fix permissions" fn_script_log_error "Could not fix permissions." + # Show the user how to fix fn_sys_perm_fix_manually_msg else fn_print_ok "Automatically fixing permissions" fi else + # Show the user how to fix fn_sys_perm_fix_manually_msg fi } # Processes to the /sys related permission errors check & fix/info fn_sys_perm_error_process(){ - fn_sys_perm_errors - # /sys, /sys/class and /sys/class/net should be readable & executable + fn_sys_perm_errors_detect # If any error was found if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error_nl "Permission error(s) found:" From cc8273d24f4329f9b6d5d1b68c860b1b2b123443 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:13:18 +0100 Subject: [PATCH 297/325] missing chmod --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 10f9ce701..0f2220880 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -170,7 +170,7 @@ fn_sys_perm_errors_fix(){ sudo chmod a+rx "/sys/class" fi if [ "${netdirpermerror}" == "1" ]; then - sudo a+rx "/sys/class/net" + sudo chmod a+rx "/sys/class/net" fi # Run check again to see if it's fixed fn_sys_perm_errors_detect From 63d58bccb4ae3bb895ee17c4f8266abb01676172 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:17:45 +0100 Subject: [PATCH 298/325] better output with sleeps --- lgsm/functions/check_permissions.sh | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 0f2220880..ff9d619ee 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -154,6 +154,7 @@ fn_sys_perm_fix_manually_msg(){ fn_script_log_info "To fix this issue, run this command as root:" echo " * chmod a+rx /sys /sys/class /sys/class/net" fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" + sleep 1 core_exit.sh } @@ -162,6 +163,7 @@ fn_sys_perm_errors_fix(){ sudo -v > /dev/null 2>&1 if [ $? -eq 0 ]; then fn_print_information_nl "Automatically fixing permissions" + sleep 1 fn_script_log_info "Automatically fixing permissions." if [ "${sysdirpermerror}" == "1" ]; then sudo chmod a+rx "/sys" @@ -177,10 +179,12 @@ fn_sys_perm_errors_fix(){ if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error "Could not fix permissions" fn_script_log_error "Could not fix permissions." + sleep 1 # Show the user how to fix fn_sys_perm_fix_manually_msg else fn_print_ok "Automatically fixing permissions" + sleep 1 fi else # Show the user how to fix @@ -195,19 +199,20 @@ fn_sys_perm_error_process(){ if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error_nl "Permission error(s) found:" fn_script_log_error "Permission error(s) found:" + sleep 1 if [ "${sysdirpermerror}" == "1" ]; then - echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" + echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" fi if [ "${classdirpermerror}" == "1" ]; then - echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" fi if [ "${netdirpermerror}" == "1" ]; then - echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" + echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" fi - echo "" + sleep 1 fn_print_information_nl "This error causes servers to fail starting properly" fn_script_log_info "This error causes servers to fail starting properly." # Run the fix From 51f6a5b25ae47bbb6417e1b772c80d0a1202cb95 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:23:01 +0100 Subject: [PATCH 299/325] warn & error in the right places --- lgsm/functions/check_permissions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index ff9d619ee..8609708e2 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -197,8 +197,8 @@ fn_sys_perm_error_process(){ fn_sys_perm_errors_detect # If any error was found if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_error_nl "Permission error(s) found:" - fn_script_log_error "Permission error(s) found:" + fn_print_warn_nl "Permission error(s) found:" + fn_script_log_warn "Permission error(s) found:" sleep 1 if [ "${sysdirpermerror}" == "1" ]; then echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" From 81848996fff4bf0b9b7455805d88d2e7399441e4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:27:02 +0100 Subject: [PATCH 300/325] log_info instead of warn otherwise fails even if fixed because of exitcode from log_warn --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 8609708e2..ad7f30a78 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -198,7 +198,7 @@ fn_sys_perm_error_process(){ # If any error was found if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_warn_nl "Permission error(s) found:" - fn_script_log_warn "Permission error(s) found:" + fn_script_log_info "Permission error(s) found:" sleep 1 if [ "${sysdirpermerror}" == "1" ]; then echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" From f54e5af2648d7df71eb4d05102c13d744ca7c051 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:42:46 +0100 Subject: [PATCH 301/325] output improvements --- lgsm/functions/check_permissions.sh | 30 +++++++++-------------------- 1 file changed, 9 insertions(+), 21 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index ad7f30a78..312f24700 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -162,9 +162,9 @@ fn_sys_perm_fix_manually_msg(){ fn_sys_perm_errors_fix(){ sudo -v > /dev/null 2>&1 if [ $? -eq 0 ]; then - fn_print_information_nl "Automatically fixing permissions" - sleep 1 - fn_script_log_info "Automatically fixing permissions." + fn_print_dots "Automatically fixing /sys permissions" + sleep 2 + fn_script_log_info "Automatically fixing /sys permissions." if [ "${sysdirpermerror}" == "1" ]; then sudo chmod a+rx "/sys" fi @@ -177,13 +177,14 @@ fn_sys_perm_errors_fix(){ # Run check again to see if it's fixed fn_sys_perm_errors_detect if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_error "Could not fix permissions" - fn_script_log_error "Could not fix permissions." + fn_print_error "Could not fix /sys permissions" + fn_script_log_error "Could not fix /sys permissions." sleep 1 # Show the user how to fix fn_sys_perm_fix_manually_msg else - fn_print_ok "Automatically fixing permissions" + fn_print_ok "Automatically fixing /sys permissions" + fn_script_log_pass "Permissions in /sys fixed" sleep 1 fi else @@ -197,21 +198,8 @@ fn_sys_perm_error_process(){ fn_sys_perm_errors_detect # If any error was found if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_warn_nl "Permission error(s) found:" - fn_script_log_info "Permission error(s) found:" - sleep 1 - if [ "${sysdirpermerror}" == "1" ]; then - echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" - fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" - fi - if [ "${classdirpermerror}" == "1" ]; then - echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" - fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" - fi - if [ "${netdirpermerror}" == "1" ]; then - echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" - fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" - fi + fn_print_error_nl "Permission error(s) found in /sys" + fn_script_log_error "Permission error(s) found in /sys" sleep 1 fn_print_information_nl "This error causes servers to fail starting properly" fn_script_log_info "This error causes servers to fail starting properly." From f09274abc88df8a3a956d1d7278d4efbed590c5d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:45:31 +0100 Subject: [PATCH 302/325] better output & logging --- lgsm/functions/check_permissions.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 312f24700..fa1e70f74 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -150,9 +150,11 @@ fn_sys_perm_errors_detect(){ # Display a message on how to fix the issue manually fn_sys_perm_fix_manually_msg(){ echo "" - fn_print_information_nl "To fix this issue, run this command as root:" - fn_script_log_info "To fix this issue, run this command as root:" - echo " * chmod a+rx /sys /sys/class /sys/class/net" + fn_print_information_nl "This error causes servers to fail starting properly" + fn_script_log_info "This error causes servers to fail starting properly." + echo " * To fix this issue, run the following command as root:" + fn_script_log_info "To fix this issue, run the following command as root:" + echo " chmod a+rx /sys /sys/class /sys/class/net" fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" sleep 1 core_exit.sh @@ -201,8 +203,6 @@ fn_sys_perm_error_process(){ fn_print_error_nl "Permission error(s) found in /sys" fn_script_log_error "Permission error(s) found in /sys" sleep 1 - fn_print_information_nl "This error causes servers to fail starting properly" - fn_script_log_info "This error causes servers to fail starting properly." # Run the fix fn_sys_perm_errors_fix fi From 6a49021878d26434f3b54c4211fec340e93da50c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 27 Jan 2017 14:48:00 +0000 Subject: [PATCH 303/325] Minor changes to UI --- lgsm/functions/fix.sh | 8 ++++++++ lgsm/functions/fix_glibc.sh | 6 +++--- lgsm/functions/fix_mta.sh | 14 +++++--------- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 327fcccf9..5bac281a3 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -17,6 +17,14 @@ fn_fix_msg_start(){ sleep 1 } +fn_fix_msg_start_nl(){ + fn_print_dots "Applying ${fixname} fix: ${gamename}" + sleep 1 + fn_print_info "Applying ${fixname} fix: ${gamename}" + fn_script_log_info "Applying ${fixname} fix: ${gamename}" + sleep 1 +} + fn_fix_msg_end(){ if [ $? -ne 0 ]; then fn_print_error_nl "Applying ${fixname} fix: ${gamename}" diff --git a/lgsm/functions/fix_glibc.sh b/lgsm/functions/fix_glibc.sh index 8580e3e71..d03b2c41e 100644 --- a/lgsm/functions/fix_glibc.sh +++ b/lgsm/functions/fix_glibc.sh @@ -46,8 +46,6 @@ do fi done -export LD_LIBRARY_PATH=:"${libdir}" - ## amd64 # libm.so.6 @@ -66,4 +64,6 @@ do if [ "${gamename}" == "${libc_server}" ]; then fn_fetch_file_github "lgsm/lib/ubuntu12.04/amd64" "libc.so.6" "${lgsmdir}/lib" "noexecutecmd" "norun" "noforce" "nomd5" fi -done \ No newline at end of file +done + +export LD_LIBRARY_PATH=:"${libdir}" \ No newline at end of file diff --git a/lgsm/functions/fix_mta.sh b/lgsm/functions/fix_mta.sh index 6bf11dbc9..7347201d9 100644 --- a/lgsm/functions/fix_mta.sh +++ b/lgsm/functions/fix_mta.sh @@ -9,16 +9,12 @@ local commandaction="Fix" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" if [ ! -f "${lgsmdir}/lib/libmysqlclient.so.16" ]; then - fixname="libmysqlclient16 install" - fn_fix_msg_start - fn_print_warn_nl "libmysqlclient16 not installed. Installing.." + fixname="libmysqlclient16" + fn_fix_msg_start_nl sleep 1 - fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="${lgsmdir}/lib"; filename="libmysqlclient.so.16"; executecmd="executecmd" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" - fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" + fileurl="https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16"; filedir="${lgsmdir}/lib"; filename="libmysqlclient.so.16"; executecmd="executecmd" run="norun"; force="noforce"; md5="6c188e0f8fb5d7a29f4bc413b9fed6c2" + fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_fix_msg_end fi -fixname="libmysqlclient16" -fn_fix_msg_start -export LD_LIBRARY_PATH=:"${libdir}" -fn_fix_msg_end +export LD_LIBRARY_PATH=:"${libdir}" \ No newline at end of file From 185e93f38e6627311fc145567c00e675fc38b658 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 27 Jan 2017 15:48:12 +0000 Subject: [PATCH 304/325] minot variable changes --- lgsm/functions/update_mta.sh | 41 ++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 365dae131..fff189ca7 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -9,12 +9,12 @@ local commandaction="Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_update_mta_dl(){ - fn_fetch_file "http://linux.mtasa.com/dl/${NUM_VERSION}/multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" "${tmpdir}" "multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" - mkdir "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}" - fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}" + fn_fetch_file "http://linux.mtasa.com/dl/${numversion}/multitheftauto_linux_x64-${fullversion}.tar.gz" "${tmpdir}" "multitheftauto_linux_x64-${fullversion}.tar.gz" + mkdir "${tmpdir}/multitheftauto_linux_x64-${fullversion}" + fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${fullversion}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${fullversion}" echo -e "copying to ${filesdir}...\c" fn_script_log "Copying to ${filesdir}" - cp -R "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}/multitheftauto_linux_x64-${FULL_VERSION}/"* "${filesdir}" + cp -R "${tmpdir}/multitheftauto_linux_x64-${fullversion}/multitheftauto_linux_x64-${fullversion}/"* "${filesdir}" local exitcode=$? if [ "${exitcode}" == "0" ]; then fn_print_ok_eol_nl @@ -69,22 +69,21 @@ fn_update_mta_currentbuild(){ fi } -fn_mta_getServerVersion() +fn_mta_get_availablebuild() { - fn_fetch_file "https://raw.githubusercontent.com/multitheftauto/mtasa-blue/master/Server/version.h" "${tmpdir}" "version.h" # we need to find latest stable version here - local MAJOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAJOR" | awk '{ print $3 }' | sed 's/\r//g')" - local MINOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MINOR" | awk '{ print $3 }' | sed 's/\r//g')" - local MAINTENANCE_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAINTENANCE" | awk '{ print $3 }' | sed 's/\r//g')" - NUM_VERSION="${MAJOR_VERSION}${MINOR_VERSION}${MAINTENANCE_VERSION}" - FULL_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${MAINTENANCE_VERSION}" - rm -f "${tmpdir}/version.h" + fn_fetch_file "https://raw.githubusercontent.com/multitheftauto/mtasa-blue/master/Server/version.h" "${tmpdir}" "version.h" # we need to find latest stable version here + local majorversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAJOR" | awk '{ print $3 }' | sed 's/\r//g')" + local minorversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MINOR" | awk '{ print $3 }' | sed 's/\r//g')" + local maintenanceversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAINTENANCE" | awk '{ print $3 }' | sed 's/\r//g')" + numversion="${majorversion}${minorversion}${maintenanceversion}" + fullversion="${majorversion}.${minorversion}.${maintenanceversion}" + rm -f "${tmpdir}/version.h" } fn_update_mta_compare(){ # Removes dots so if can compare version numbers currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]') - - if [ "${currentbuilddigit}" -ne "${NUM_VERSION}" ]||[ "${forceupdate}" == "1" ]; then + if [ "${currentbuilddigit}" -ne "${numversion}" ]||[ "${forceupdate}" == "1" ]; then if [ "${forceupdate}" == "1" ]; then # forceupdate bypasses checks, useful for small build changes mta_update_string="forced" @@ -95,7 +94,7 @@ fn_update_mta_compare(){ echo -e "Update ${mta_update_string}:" sleep 1 echo -e " Current build: ${red}${currentbuild} ${default}" - echo -e " Available build: ${green}${FULL_VERSION} ${default}" + echo -e " Available build: ${green}${fullversion} ${default}" echo -e "" sleep 1 echo "" @@ -108,8 +107,8 @@ fn_update_mta_compare(){ echo -en "\n" fn_script_log "Update ${mta_update_string}" fn_script_log "Current build: ${currentbuild}" - fn_script_log "Available build: ${FULL_VERSION}" - fn_script_log "${currentbuild} > ${FULL_VERSION}" + fn_script_log "Available build: ${fullversion}" + fn_script_log "${currentbuild} > ${fullversion}" unset updateonstart @@ -133,17 +132,17 @@ fn_update_mta_compare(){ echo -e "\n" echo -e "No update available:" echo -e " Current version: ${green}${currentbuild}${default}" - echo -e " Available version: ${green}${FULL_VERSION}${default}" + echo -e " Available version: ${green}${fullversion}${default}" echo -e "" fn_print_ok_nl "No update available" fn_script_log_info "Current build: ${currentbuild}" - fn_script_log_info "Available build: ${FULL_VERSION}" + fn_script_log_info "Available build: ${fullversion}" fi } if [ "${installer}" == "1" ]; then - fn_mta_getServerVersion + fn_mta_get_availablebuild fn_update_mta_dl else # Checks for server update from linux.mtasa.com using the github repo. @@ -151,6 +150,6 @@ else fn_script_log_info "Checking for update: linux.mtasa.com" sleep 1 fn_update_mta_currentbuild - fn_mta_getServerVersion + fn_mta_get_availablebuild fn_update_mta_compare fi From 8577632c92d55c96c461048593cb926bce85ca13 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 27 Jan 2017 15:48:12 +0000 Subject: [PATCH 305/325] minor variable changes --- lgsm/functions/update_mta.sh | 41 ++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 365dae131..fff189ca7 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -9,12 +9,12 @@ local commandaction="Update" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_update_mta_dl(){ - fn_fetch_file "http://linux.mtasa.com/dl/${NUM_VERSION}/multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" "${tmpdir}" "multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" - mkdir "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}" - fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${FULL_VERSION}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}" + fn_fetch_file "http://linux.mtasa.com/dl/${numversion}/multitheftauto_linux_x64-${fullversion}.tar.gz" "${tmpdir}" "multitheftauto_linux_x64-${fullversion}.tar.gz" + mkdir "${tmpdir}/multitheftauto_linux_x64-${fullversion}" + fn_dl_extract "${tmpdir}" "multitheftauto_linux_x64-${fullversion}.tar.gz" "${tmpdir}/multitheftauto_linux_x64-${fullversion}" echo -e "copying to ${filesdir}...\c" fn_script_log "Copying to ${filesdir}" - cp -R "${tmpdir}/multitheftauto_linux_x64-${FULL_VERSION}/multitheftauto_linux_x64-${FULL_VERSION}/"* "${filesdir}" + cp -R "${tmpdir}/multitheftauto_linux_x64-${fullversion}/multitheftauto_linux_x64-${fullversion}/"* "${filesdir}" local exitcode=$? if [ "${exitcode}" == "0" ]; then fn_print_ok_eol_nl @@ -69,22 +69,21 @@ fn_update_mta_currentbuild(){ fi } -fn_mta_getServerVersion() +fn_mta_get_availablebuild() { - fn_fetch_file "https://raw.githubusercontent.com/multitheftauto/mtasa-blue/master/Server/version.h" "${tmpdir}" "version.h" # we need to find latest stable version here - local MAJOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAJOR" | awk '{ print $3 }' | sed 's/\r//g')" - local MINOR_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MINOR" | awk '{ print $3 }' | sed 's/\r//g')" - local MAINTENANCE_VERSION="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAINTENANCE" | awk '{ print $3 }' | sed 's/\r//g')" - NUM_VERSION="${MAJOR_VERSION}${MINOR_VERSION}${MAINTENANCE_VERSION}" - FULL_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${MAINTENANCE_VERSION}" - rm -f "${tmpdir}/version.h" + fn_fetch_file "https://raw.githubusercontent.com/multitheftauto/mtasa-blue/master/Server/version.h" "${tmpdir}" "version.h" # we need to find latest stable version here + local majorversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAJOR" | awk '{ print $3 }' | sed 's/\r//g')" + local minorversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MINOR" | awk '{ print $3 }' | sed 's/\r//g')" + local maintenanceversion="$(cat ${tmpdir}/version.h | grep "#define MTASA_VERSION_MAINTENANCE" | awk '{ print $3 }' | sed 's/\r//g')" + numversion="${majorversion}${minorversion}${maintenanceversion}" + fullversion="${majorversion}.${minorversion}.${maintenanceversion}" + rm -f "${tmpdir}/version.h" } fn_update_mta_compare(){ # Removes dots so if can compare version numbers currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]') - - if [ "${currentbuilddigit}" -ne "${NUM_VERSION}" ]||[ "${forceupdate}" == "1" ]; then + if [ "${currentbuilddigit}" -ne "${numversion}" ]||[ "${forceupdate}" == "1" ]; then if [ "${forceupdate}" == "1" ]; then # forceupdate bypasses checks, useful for small build changes mta_update_string="forced" @@ -95,7 +94,7 @@ fn_update_mta_compare(){ echo -e "Update ${mta_update_string}:" sleep 1 echo -e " Current build: ${red}${currentbuild} ${default}" - echo -e " Available build: ${green}${FULL_VERSION} ${default}" + echo -e " Available build: ${green}${fullversion} ${default}" echo -e "" sleep 1 echo "" @@ -108,8 +107,8 @@ fn_update_mta_compare(){ echo -en "\n" fn_script_log "Update ${mta_update_string}" fn_script_log "Current build: ${currentbuild}" - fn_script_log "Available build: ${FULL_VERSION}" - fn_script_log "${currentbuild} > ${FULL_VERSION}" + fn_script_log "Available build: ${fullversion}" + fn_script_log "${currentbuild} > ${fullversion}" unset updateonstart @@ -133,17 +132,17 @@ fn_update_mta_compare(){ echo -e "\n" echo -e "No update available:" echo -e " Current version: ${green}${currentbuild}${default}" - echo -e " Available version: ${green}${FULL_VERSION}${default}" + echo -e " Available version: ${green}${fullversion}${default}" echo -e "" fn_print_ok_nl "No update available" fn_script_log_info "Current build: ${currentbuild}" - fn_script_log_info "Available build: ${FULL_VERSION}" + fn_script_log_info "Available build: ${fullversion}" fi } if [ "${installer}" == "1" ]; then - fn_mta_getServerVersion + fn_mta_get_availablebuild fn_update_mta_dl else # Checks for server update from linux.mtasa.com using the github repo. @@ -151,6 +150,6 @@ else fn_script_log_info "Checking for update: linux.mtasa.com" sleep 1 fn_update_mta_currentbuild - fn_mta_getServerVersion + fn_mta_get_availablebuild fn_update_mta_compare fi From 6d63023ac23f9d173542b54bd834ec690ba63817 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 19:34:06 +0100 Subject: [PATCH 306/325] fn_print_ok_nl "Automatically fixing ... --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index fa1e70f74..defde5771 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -185,7 +185,7 @@ fn_sys_perm_errors_fix(){ # Show the user how to fix fn_sys_perm_fix_manually_msg else - fn_print_ok "Automatically fixing /sys permissions" + fn_print_ok_nl "Automatically fixing /sys permissions" fn_script_log_pass "Permissions in /sys fixed" sleep 1 fi From 0001a2136a9f64d91b9807ea4b00dadb58ce942b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 19:55:56 +0100 Subject: [PATCH 307/325] command_wipe.sh for check_logs.sh --- lgsm/functions/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 577579171..a56bb2942 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -34,7 +34,7 @@ do fi done -local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh command_update.sh command_validate.sh command_update_functions.sh command_email_test.sh command_mods_install.sh command_mods_update.sh command_mods_remove.sh ) +local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh command_update.sh command_validate.sh command_update_functions.sh command_email_test.sh command_mods_install.sh command_mods_update.sh command_mods_remove.sh command_wipe.sh ) for allowed_command in "${allowed_commands_array[@]}" do if [ "${allowed_command}" == "${function_selfname}" ]; then From e3dc66aeb2dba47e3670989d64ce51bdda3c010b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 20:01:18 +0100 Subject: [PATCH 308/325] code premisses --- lgsm/functions/command_wipe.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 2bdcf9c76..339d9d726 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -5,3 +5,34 @@ # Website: https://gameservermanagers.com # Description: Wipes server data for Rust, useful after monthly updates +local commandname="WIPE" +local commandaction="wipe data" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh + +fn_print_header + +# Checks if there is something to wipe +fn_wipe_check(){ + if [ "${gamename}" == "Rust" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -f "${serveridentitydir}/proceduralmap*.sav" ]; then + fn_wipe_server_process + else + echo "Nothing to wipe" + core_exit.sh + fi +} + +fn_wipe_server_process(){ + check_status.sh + if [ "${status}" != "0" ]; then + exitbypass=1 + command_stop.sh + fn_validation + exitbypass=1 + command_start.sh +else + fn_validation +fi +} From 8240e9c93730c3789e6af1dbb2fd872ecf6428aa Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 20:24:54 +0100 Subject: [PATCH 309/325] should be working, needs logging & proper output --- lgsm/functions/command_wipe.sh | 75 +++++++++++++++++++++++++--------- 1 file changed, 56 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 339d9d726..ec9871108 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Wipes server data for Rust, useful after monthly updates +# Description: Wipes server data, useful after updates for some games like Rust local commandname="WIPE" local commandaction="wipe data" @@ -14,25 +14,62 @@ check.sh fn_print_header # Checks if there is something to wipe -fn_wipe_check(){ - if [ "${gamename}" == "Rust" ]; then - if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -f "${serveridentitydir}/proceduralmap*.sav" ]; then - fn_wipe_server_process - else - echo "Nothing to wipe" - core_exit.sh - fi +fn_wipe_server(){ + # Rust Wipe + if [ "${gamename}" == "Rust" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then + echo " * Any user, storage, and map data will be erased." + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; core_exit.sh;; + * ) echo "Please answer yes or no.";; + esac + done + fn_script_log_info "User selected to continue" + fn_wipe_server_process + else + echo "Nothing to wipe" + core_exit.sh + fi + else + echo "Wipe is not available" + core_exit.sh + fi } +# Removes files to wipe server +fn_wipe_server_remove_files(){ + if [ "${gamename}" == "Rust" ]; then + if [ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then + echo "Removing map" + rm -f "${serveridentitydir}/proceduralmap*.sav" + fi + if [ -d "${serveridentitydir}/user" ]; then + echo "Removing users data" + rm -rf "${serveridentitydir}/user" + fi + if [ -d "${serveridentitydir}/storage" ]; then + echo "Removing storage data" + rm -rf "${serveridentitydir}/storage" + fi + fi +} + +# Process to server wipe fn_wipe_server_process(){ - check_status.sh - if [ "${status}" != "0" ]; then - exitbypass=1 - command_stop.sh - fn_validation - exitbypass=1 - command_start.sh -else - fn_validation -fi + check_status.sh + if [ "${status}" != "0" ]; then + exitbypass=1 + command_stop.sh + fn_wipe_server_remove_files + exitbypass=1 + command_start.sh + else + fn_wipe_server_remove_files + fi + echo "Server Wiped" } + +fn_wipe_server From 526402adc16c3d30c2dccae1be96bb451e683c0d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 20:33:36 +0100 Subject: [PATCH 310/325] missing $ --- lgsm/functions/command_wipe.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index ec9871108..1b90bd9eb 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -17,7 +17,7 @@ fn_print_header fn_wipe_server(){ # Rust Wipe if [ "${gamename}" == "Rust" ]; then - if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then echo " * Any user, storage, and map data will be erased." while true; do read -e -i "y" -p "Continue? [Y/n]" yn @@ -42,7 +42,7 @@ fn_wipe_server(){ # Removes files to wipe server fn_wipe_server_remove_files(){ if [ "${gamename}" == "Rust" ]; then - if [ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then + if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then echo "Removing map" rm -f "${serveridentitydir}/proceduralmap*.sav" fi From 2da83d47a7d223db627b269bfdf6ba9a0f7ca1c7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 04:53:39 +0100 Subject: [PATCH 311/325] Attempt for better logging and outputs --- lgsm/functions/command_wipe.sh | 112 +++++++++++++++++++++------------ 1 file changed, 71 insertions(+), 41 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 1b90bd9eb..e54969b47 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -6,70 +6,100 @@ # Description: Wipes server data, useful after updates for some games like Rust local commandname="WIPE" -local commandaction="wipe data" +local commandaction="data wipe" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh - fn_print_header +fn_scripg_log "Entering ${gamename} ${commandaction}" -# Checks if there is something to wipe -fn_wipe_server(){ - # Rust Wipe - if [ "${gamename}" == "Rust" ]; then - if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then - echo " * Any user, storage, and map data will be erased." - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; core_exit.sh;; - * ) echo "Please answer yes or no.";; - esac - done - fn_script_log_info "User selected to continue" - fn_wipe_server_process - else - echo "Nothing to wipe" - core_exit.sh - fi +# Process to server wipe +fn_wipe_server_process(){ + check_status.sh + if [ "${status}" != "0" ]; then + exitbypass=1 + command_stop.sh + fn_wipe_server_remove_files + exitbypass=1 + command_start.sh else - echo "Wipe is not available" + fn_wipe_server_remove_files + fi + echo "server data wiped" + fn_script_log "server data wiped." +} + +# Provides an exit code upon error +fn_wipe_exit_code(){ + ((exitcode=$?)) + if [ ${exitcode} -ne 0 ]; then + fn_script_log_fatal "${currentaction}" core_exit.sh + else + fn_print_ok_eol_nl fi } # Removes files to wipe server fn_wipe_server_remove_files(){ + # Rust Wipe if [ "${gamename}" == "Rust" ]; then if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then - echo "Removing map" + currentaction="Removing map ${serveridentitydir}/proceduralmap*.sav" + echo -en "${currentaction}" + fn_script_log "${currentaction}" rm -f "${serveridentitydir}/proceduralmap*.sav" + fn_wipe_exit_code fi if [ -d "${serveridentitydir}/user" ]; then - echo "Removing users data" + currentaction="Removing user ${serveridentitydir}/user" + echo -en "${currentaction}" + fn_script_log "${currentaction}" rm -rf "${serveridentitydir}/user" + fn_wipe_exit_code fi if [ -d "${serveridentitydir}/storage" ]; then - echo "Removing storage data" + currentaction="Removing storage ${serveridentitydir}/storage" + echo -en "${currentaction}" + fn_script_log "${currentaction}" rm -rf "${serveridentitydir}/storage" + fn_wipe_exit_code + fi + if [ -d "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then + currentaction="Removing storage ${serveridentitydir}/Log.*.txt" + echo -en "${currentaction}" + fn_script_log "${currentaction}" + rm -f "${serveridentitydir}/Log.*.txt" + fn_wipe_exit_code fi + # You can add an "elif" here to add another game or engine fi } -# Process to server wipe -fn_wipe_server_process(){ - check_status.sh - if [ "${status}" != "0" ]; then - exitbypass=1 - command_stop.sh - fn_wipe_server_remove_files - exitbypass=1 - command_start.sh - else - fn_wipe_server_remove_files +# Check if there is something to wipe, prompt the user, and call appropriate functions +# Rust Wipe +if [ "${gamename}" == "Rust" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then + fn_print_warning_nl "Any user, storage, log and map data from ${serveridentitydir} will be erased." + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; core_exit.sh;; + * ) echo "Please answer yes or no.";; + esac + done + fn_script_log_info "User selects to erase any user, storage, log and map data from ${serveridentitydir}" + fn_wipe_server_process + else + fn_print_information "No data to wipe was found" + fn_script_log_info "No data to wipe was found." + core_exit.sh fi - echo "Server Wiped" -} - -fn_wipe_server +# You can add an "elif" here to add another game or engine +else + # Game not listed + fn_print_information "Wipe is not available for this game" + fn_script_log_info "Wipe is not available for this game." + core_exit.sh +fi From 9c7e9057071719da0d52b4b0140a98d1f8022039 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 04:54:04 +0100 Subject: [PATCH 312/325] typo --- lgsm/functions/command_wipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index e54969b47..536655fcb 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh fn_print_header -fn_scripg_log "Entering ${gamename} ${commandaction}" +fn_script_log "Entering ${gamename} ${commandaction}" # Process to server wipe fn_wipe_server_process(){ From fb8c4c93c7d63bab06e9d7d1d366c79d5688d995 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:04:56 +0100 Subject: [PATCH 313/325] sleeps & better outputs --- lgsm/functions/command_wipe.sh | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 536655fcb..11c5b920a 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -45,32 +45,40 @@ fn_wipe_server_remove_files(){ # Rust Wipe if [ "${gamename}" == "Rust" ]; then if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then - currentaction="Removing map ${serveridentitydir}/proceduralmap*.sav" - echo -en "${currentaction}" + currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap*.sav" + echo -en "Removing map proceduralmap*.sav file(s)..." + sleep 1 fn_script_log "${currentaction}" rm -f "${serveridentitydir}/proceduralmap*.sav" fn_wipe_exit_code + sleep 0.5 fi if [ -d "${serveridentitydir}/user" ]; then - currentaction="Removing user ${serveridentitydir}/user" - echo -en "${currentaction}" + currentaction="Removing user directory: ${serveridentitydir}/user" + echo -en "Removing user directory..." + sleep 1 fn_script_log "${currentaction}" rm -rf "${serveridentitydir}/user" fn_wipe_exit_code + sleep 0.5 fi if [ -d "${serveridentitydir}/storage" ]; then - currentaction="Removing storage ${serveridentitydir}/storage" - echo -en "${currentaction}" + currentaction="Removing storage directory: ${serveridentitydir}/storage" + echo -en "Removing storage directory..." + sleep 1 fn_script_log "${currentaction}" rm -rf "${serveridentitydir}/storage" fn_wipe_exit_code + sleep 0.5 fi if [ -d "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then - currentaction="Removing storage ${serveridentitydir}/Log.*.txt" - echo -en "${currentaction}" + currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" + echo -en "Removing Log files..." + sleep 1 fn_script_log "${currentaction}" rm -f "${serveridentitydir}/Log.*.txt" fn_wipe_exit_code + sleep 0.5 fi # You can add an "elif" here to add another game or engine fi @@ -90,10 +98,12 @@ if [ "${gamename}" == "Rust" ]; then esac done fn_script_log_info "User selects to erase any user, storage, log and map data from ${serveridentitydir}" + sleep 1 fn_wipe_server_process else fn_print_information "No data to wipe was found" fn_script_log_info "No data to wipe was found." + sleep 1 core_exit.sh fi # You can add an "elif" here to add another game or engine @@ -101,5 +111,6 @@ else # Game not listed fn_print_information "Wipe is not available for this game" fn_script_log_info "Wipe is not available for this game." + sleep 1 core_exit.sh fi From 70cc6996a81ef07029e3e2edaa67b01d9e981c13 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:11:06 +0100 Subject: [PATCH 314/325] various improvements --- lgsm/functions/command_wipe.sh | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 11c5b920a..4ff3ad94f 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -44,14 +44,17 @@ fn_wipe_exit_code(){ fn_wipe_server_remove_files(){ # Rust Wipe if [ "${gamename}" == "Rust" ]; then - if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then - currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap*.sav" - echo -en "Removing map proceduralmap*.sav file(s)..." + if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.sav")" ]; then + currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap.*.sav" + echo -en "Removing map proceduralmap.*.sav file(s)..." sleep 1 fn_script_log "${currentaction}" - rm -f "${serveridentitydir}/proceduralmap*.sav" + rm -f "${serveridentitydir}/proceduralmap.*.sav" fn_wipe_exit_code sleep 0.5 + else + fn_print_information "No map file to remove" + fn_script_log_info "No map file to remove." fi if [ -d "${serveridentitydir}/user" ]; then currentaction="Removing user directory: ${serveridentitydir}/user" @@ -61,6 +64,9 @@ fn_wipe_server_remove_files(){ rm -rf "${serveridentitydir}/user" fn_wipe_exit_code sleep 0.5 + else + fn_print_information "No user directory to remove" + fn_script_log_info "No user directory to remove." fi if [ -d "${serveridentitydir}/storage" ]; then currentaction="Removing storage directory: ${serveridentitydir}/storage" @@ -70,8 +76,11 @@ fn_wipe_server_remove_files(){ rm -rf "${serveridentitydir}/storage" fn_wipe_exit_code sleep 0.5 + else + fn_print_information "No storage directory to remove" + fn_script_log_info "No storage directory to remove." fi - if [ -d "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then + if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" echo -en "Removing Log files..." sleep 1 @@ -79,6 +88,9 @@ fn_wipe_server_remove_files(){ rm -f "${serveridentitydir}/Log.*.txt" fn_wipe_exit_code sleep 0.5 + else + fn_print_information "No log files to remove" + fn_script_log_info "No log files to remove." fi # You can add an "elif" here to add another game or engine fi From fe7ac7d6b6d5b4682c6dc91182bd6023b94a657b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:17:44 +0100 Subject: [PATCH 315/325] wildcard appear not to work for "rm" command --- lgsm/functions/command_wipe.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 4ff3ad94f..1537341ac 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -49,11 +49,11 @@ fn_wipe_server_remove_files(){ echo -en "Removing map proceduralmap.*.sav file(s)..." sleep 1 fn_script_log "${currentaction}" - rm -f "${serveridentitydir}/proceduralmap.*.sav" + find "${serveridentitydir}" -type f -name "proceduralmap.*.sav" -delete fn_wipe_exit_code sleep 0.5 else - fn_print_information "No map file to remove" + fn_print_information_nl "No map file to remove" fn_script_log_info "No map file to remove." fi if [ -d "${serveridentitydir}/user" ]; then @@ -65,7 +65,7 @@ fn_wipe_server_remove_files(){ fn_wipe_exit_code sleep 0.5 else - fn_print_information "No user directory to remove" + fn_print_information_nl "No user directory to remove" fn_script_log_info "No user directory to remove." fi if [ -d "${serveridentitydir}/storage" ]; then @@ -77,7 +77,7 @@ fn_wipe_server_remove_files(){ fn_wipe_exit_code sleep 0.5 else - fn_print_information "No storage directory to remove" + fn_print_information_nl "No storage directory to remove" fn_script_log_info "No storage directory to remove." fi if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then @@ -85,11 +85,11 @@ fn_wipe_server_remove_files(){ echo -en "Removing Log files..." sleep 1 fn_script_log "${currentaction}" - rm -f "${serveridentitydir}/Log.*.txt" + find "${serveridentitydir}" -type f -name "Log.*.txt" -delete fn_wipe_exit_code sleep 0.5 else - fn_print_information "No log files to remove" + fn_print_information_nl "No log files to remove" fn_script_log_info "No log files to remove." fi # You can add an "elif" here to add another game or engine From 95ad518e3b74e5c7c247e1be7b3acb006b57408a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:18:38 +0100 Subject: [PATCH 316/325] some more sleeps --- lgsm/functions/command_wipe.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 1537341ac..56e28df55 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -55,6 +55,7 @@ fn_wipe_server_remove_files(){ else fn_print_information_nl "No map file to remove" fn_script_log_info "No map file to remove." + sleep 0.5 fi if [ -d "${serveridentitydir}/user" ]; then currentaction="Removing user directory: ${serveridentitydir}/user" @@ -67,6 +68,7 @@ fn_wipe_server_remove_files(){ else fn_print_information_nl "No user directory to remove" fn_script_log_info "No user directory to remove." + sleep 0.5 fi if [ -d "${serveridentitydir}/storage" ]; then currentaction="Removing storage directory: ${serveridentitydir}/storage" @@ -79,6 +81,7 @@ fn_wipe_server_remove_files(){ else fn_print_information_nl "No storage directory to remove" fn_script_log_info "No storage directory to remove." + sleep 0.5 fi if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" @@ -91,6 +94,7 @@ fn_wipe_server_remove_files(){ else fn_print_information_nl "No log files to remove" fn_script_log_info "No log files to remove." + sleep 0.5 fi # You can add an "elif" here to add another game or engine fi From 20314d09b298a790300cfd4e7914f7c16334cf55 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:19:04 +0100 Subject: [PATCH 317/325] new liners --- lgsm/functions/command_wipe.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 56e28df55..fd9306dd3 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -117,7 +117,7 @@ if [ "${gamename}" == "Rust" ]; then sleep 1 fn_wipe_server_process else - fn_print_information "No data to wipe was found" + fn_print_information_nl "No data to wipe was found" fn_script_log_info "No data to wipe was found." sleep 1 core_exit.sh @@ -125,7 +125,7 @@ if [ "${gamename}" == "Rust" ]; then # You can add an "elif" here to add another game or engine else # Game not listed - fn_print_information "Wipe is not available for this game" + fn_print_information_nl "Wipe is not available for this game" fn_script_log_info "Wipe is not available for this game." sleep 1 core_exit.sh From 69e20bec520e71ac0f43786847f803f763433395 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:22:42 +0100 Subject: [PATCH 318/325] rconweb info --- Rust/rustserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rust/rustserver b/Rust/rustserver index aa740f8b1..acd9a9590 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -29,7 +29,7 @@ ip="0.0.0.0" port="28015" rconport="28016" rconpassword="CHANGE_ME" -rconweb="1" +rconweb="1" # Value is: 1 for Facepunch's web panel; 0 for RCON tools like Rusty or Rustadmin maxplayers="50" # Advanced Start Settings seed="" # default random; range : 1 to 2147483647 ; used to change or reproduce a procedural map From 616be584d8b2de0dd0b161e3e46bec757be4b774 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:32:13 +0100 Subject: [PATCH 319/325] always end with core_exit.sh --- lgsm/functions/command_wipe.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index fd9306dd3..440c8080e 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -130,3 +130,5 @@ else sleep 1 core_exit.sh fi + +core_exit.sh From 873a8d3f5bf4c2da517433e04a79be541c3d4845 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:59:07 +0100 Subject: [PATCH 320/325] typo on advdupe 2 --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 8b0beb604..0be15b08b 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -61,7 +61,7 @@ mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archi mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "acf-master/lua/acf/shared/guns;" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) -mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) +mod_info_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) # Oxidemod From 5e5153c71c6f38d1eb9673b7c3ab440a9766231b Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sat, 28 Jan 2017 02:00:21 -0500 Subject: [PATCH 321/325] update UT XAN-3270765 --- lgsm/functions/install_server_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 792cb5e49..4304d3b04 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -34,7 +34,7 @@ fn_install_server_files(){ elif [ "${gamename}" == "Unreal Tournament 99" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament99/ut99-server-451-ultimate-linux.tar.bz2"; filedir="${tmpdir}"; filename="ut99-server-451-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="49cb24d0550ff6ddeaba6007045c6edd" elif [ "${gamename}" == "Unreal Tournament" ]; then - fileurl="http://files.gameservermanagers.com/UnrealTournament/UnrealTournament-Server-XAN-3193528-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3193528-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="e3dd5853c4eb193674d5c832f60040d8" + fileurl="https://s3.amazonaws.com/unrealtournament/UnrealTournament-Server-XAN-3270765-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3270765-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="8791dc087383061d7f7f9f523237b8b3" elif [ "${gamename}" == "Unreal Tournament 3" ]; then fileurl="http://files.gameservermanagers.com/UnrealTournament3/UT3-linux-server-2.1.tar.bz2"; filedir="${tmpdir}"; filename="UT3-linux-server-2.1.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="2527437b46f1b47f20228d27d72395a6" elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then From 5756d4157d5f911cf490e3c7444028fbe17463ff Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 28 Jan 2017 10:36:56 +0000 Subject: [PATCH 322/325] minor update to jc2 tests --- tests/tests_jc2server.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index c9140e9d0..af06805a3 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -23,9 +23,6 @@ version="170110" ######## Settings ######## ########################## -#### Server Settings #### -# No settings available for Just Cause 2 - ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ parms="" @@ -43,6 +40,7 @@ emailfrom="" # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +channeltag="" ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" From 377ecf38b5e30527a15de0e9059cb655b8b92dfe Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 28 Jan 2017 21:45:49 +0000 Subject: [PATCH 323/325] Updated version number 170728 --- 7DaysToDie/sdtdserver | 2 +- ARKSurvivalEvolved/arkserver | 2 +- Arma3/arma3server | 2 +- Battlefield1942/bf1942server | 2 +- BlackMesa/bmdmserver | 2 +- BladeSymphony/bsserver | 2 +- BrainBread2/bb2server | 2 +- CallOfDuty/codserver | 2 +- CallOfDuty2/cod2server | 2 +- CallOfDuty4/cod4server | 2 +- CallOfDutyUnitedOffensive/coduoserver | 2 +- CallOfDutyWorldAtWar/codwawserver | 2 +- CodenameCURE/ccserver | 2 +- CounterStrike/csserver | 2 +- CounterStrikeConditionZero/csczserver | 2 +- CounterStrikeGlobalOffensive/csgoserver | 2 +- CounterStrikeSource/cssserver | 2 +- DayOfDefeat/dodserver | 2 +- DayOfDefeatSource/dodsserver | 2 +- DayOfInfamy/doiserver | 2 +- DeathmatchClassic/dmcserver | 2 +- DontStarveTogether/dstserver | 2 +- DoubleActionBoogaloo/dabserver | 2 +- EmpiresMod/emserver | 2 +- Factorio/fctrserver | 2 +- FistfulOfFrags/fofserver | 2 +- GarrysMod/gmodserver | 2 +- GoldenEyeSource/gesserver | 2 +- HalfLife2Deathmatch/hl2dmserver | 2 +- HalfLifeDeathmatch/hldmserver | 2 +- HalfLifeDeathmatchSource/hldmsserver | 2 +- Hurtworld/hwserver | 2 +- Insurgency/insserver | 2 +- JustCause2/jc2server | 2 +- KillingFloor/kfserver | 2 +- Left4Dead/l4dserver | 2 +- Left4Dead2/l4d2server | 2 +- Minecraft/mcserver | 2 +- Mumble/mumbleserver | 2 +- NS2Combat/ns2cserver | 2 +- NaturalSelection2/ns2server | 2 +- NoMoreRoomInHell/nmrihserver | 2 +- OpposingForce/opforserver | 2 +- PiratesVikingandKnightsII/pvkiiserver | 2 +- ProjectZomboid/pzserver | 2 +- Quake2/q2server | 2 +- Quake3/q3server | 2 +- QuakeLive/qlserver | 2 +- QuakeWorld/qwserver | 2 +- RedOrchestra/roserver | 2 +- Ricochet/ricochetserver | 2 +- Rust/rustserver | 2 +- SeriousSam3BFE/ss3sserver | 2 +- Starbound/sbserver | 2 +- SvenCoop/svenserver | 2 +- TeamFortress2/tf2server | 2 +- TeamFortressClassic/tfcserver | 2 +- TeamSpeak3/ts3server | 2 +- Teeworlds/twserver | 2 +- Terraria/terrariaserver | 2 +- UnrealTournament/utserver | 2 +- UnrealTournament2004/ut2k4server | 2 +- UnrealTournament3/ut3server | 2 +- UnrealTournament99/ut99server | 2 +- WolfensteinEnemyTerritory/wetserver | 2 +- tests/tests_jc2server.sh | 2 +- 66 files changed, 66 insertions(+), 66 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 6ca116aa7..518628004 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index da408b353..a6a5080a8 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Arma3/arma3server b/Arma3/arma3server index 8d6dcb210..f6c03be06 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Battlefield1942/bf1942server b/Battlefield1942/bf1942server index 51b8dfcc0..ae7447aa9 100644 --- a/Battlefield1942/bf1942server +++ b/Battlefield1942/bf1942server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index 1b6c9d573..6baa4e739 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 38c71ce1e..1e5ad15cc 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index df5034bb8..8668fffce 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CallOfDuty/codserver b/CallOfDuty/codserver index d78cbaece..b13aa8ed2 100755 --- a/CallOfDuty/codserver +++ b/CallOfDuty/codserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CallOfDuty2/cod2server b/CallOfDuty2/cod2server index db4f07af9..2939c036e 100755 --- a/CallOfDuty2/cod2server +++ b/CallOfDuty2/cod2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CallOfDuty4/cod4server b/CallOfDuty4/cod4server index 6b4a0260e..661077042 100644 --- a/CallOfDuty4/cod4server +++ b/CallOfDuty4/cod4server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CallOfDutyUnitedOffensive/coduoserver b/CallOfDutyUnitedOffensive/coduoserver index c3d71ae8a..172af806c 100755 --- a/CallOfDutyUnitedOffensive/coduoserver +++ b/CallOfDutyUnitedOffensive/coduoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CallOfDutyWorldAtWar/codwawserver b/CallOfDutyWorldAtWar/codwawserver index 5e3681ead..43b5c7a42 100755 --- a/CallOfDutyWorldAtWar/codwawserver +++ b/CallOfDutyWorldAtWar/codwawserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CodenameCURE/ccserver b/CodenameCURE/ccserver index 3196b993c..30bb0a0b2 100644 --- a/CodenameCURE/ccserver +++ b/CodenameCURE/ccserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 4add519a6..e6de0dc7e 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 8333438b9..ba70f15f3 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 8a306dc03..3122255fc 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index bdee401bb..be253b1d8 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index efe5861f8..83929712f 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 3508e0686..60dfa9f66 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/DayOfInfamy/doiserver b/DayOfInfamy/doiserver index 5d2ed38fe..acf036430 100644 --- a/DayOfInfamy/doiserver +++ b/DayOfInfamy/doiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 4ef098e91..fbd3ee106 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 99239c49a..972009a08 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 245cd0c59..04ab7fdda 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/EmpiresMod/emserver b/EmpiresMod/emserver index 36cb92f5a..e628f4c42 100644 --- a/EmpiresMod/emserver +++ b/EmpiresMod/emserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Factorio/fctrserver b/Factorio/fctrserver index 8843668e4..f6b29d916 100644 --- a/Factorio/fctrserver +++ b/Factorio/fctrserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 988a1b680..9039576f5 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index c432c6769..89eea5994 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index d1520cc35..228d54523 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index b5a15f78c..53cc2f4ab 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 8ba1b8d01..b008887a9 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index c25dc3fbf..22ab2c5d1 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 43a6e465f..24b43ca40 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Insurgency/insserver b/Insurgency/insserver index eac3777c3..d6f7a8841 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 626df4b3a..0f4ef2dba 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index baca47dcc..de04e2db9 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 2216a5f93..915efab6f 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 496444a20..8d9e428fa 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Minecraft/mcserver b/Minecraft/mcserver index 82999f5a3..265e07746 100644 --- a/Minecraft/mcserver +++ b/Minecraft/mcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 6dd9eb2d3..e19c936cd 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index c1b39d836..41949f3c6 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index bc01063c2..272f68fef 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 5a925ea54..0c44dd2ff 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 945f353d4..32a668f53 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index 6a715b7b9..7442c678a 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index c39c86f5e..31cc52efa 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Quake2/q2server b/Quake2/q2server index a1ff9bb75..e86933c26 100644 --- a/Quake2/q2server +++ b/Quake2/q2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Quake3/q3server b/Quake3/q3server index 1a64eeb1b..aca7dfcde 100644 --- a/Quake3/q3server +++ b/Quake3/q3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/QuakeLive/qlserver b/QuakeLive/qlserver index 73047718d..7433273d9 100755 --- a/QuakeLive/qlserver +++ b/QuakeLive/qlserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/QuakeWorld/qwserver b/QuakeWorld/qwserver index 1b92190e3..800ada9cd 100644 --- a/QuakeWorld/qwserver +++ b/QuakeWorld/qwserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 0812c7f41..19d4b65cf 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index 16d9fca81..e1486d67f 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Rust/rustserver b/Rust/rustserver index acd9a9590..8d4ded872 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 33487a651..029db5b59 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Starbound/sbserver b/Starbound/sbserver index 899d846dc..38f48c97e 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/SvenCoop/svenserver b/SvenCoop/svenserver index 10e27db1b..b401e72ea 100644 --- a/SvenCoop/svenserver +++ b/SvenCoop/svenserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index bbc242d0b..e9982d1f8 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index 6c3a7d9eb..501ef64a4 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index d1d97c172..6df71f193 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Teeworlds/twserver b/Teeworlds/twserver index d0de5a1d0..e038f175f 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index a155828eb..1f803e45b 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/UnrealTournament/utserver b/UnrealTournament/utserver index e95414adc..6e3afdf5b 100644 --- a/UnrealTournament/utserver +++ b/UnrealTournament/utserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index 0b49bd361..1cbfd4c59 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/UnrealTournament3/ut3server b/UnrealTournament3/ut3server index 8a839fc92..5dfe1207d 100644 --- a/UnrealTournament3/ut3server +++ b/UnrealTournament3/ut3server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index fff7c8cb4..237c1531a 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/WolfensteinEnemyTerritory/wetserver b/WolfensteinEnemyTerritory/wetserver index 07ec5b7d9..bfc0cbd16 100644 --- a/WolfensteinEnemyTerritory/wetserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -14,7 +14,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index af06805a3..fd0a0e4d7 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -17,7 +17,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170110" +version="170128" ########################## ######## Settings ######## From 3d7ee63bd7e61cf57960c38c196fe4f3b8878cb9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 28 Jan 2017 21:46:07 +0000 Subject: [PATCH 324/325] Updates TS3 tests to match current layout --- tests/tests_ts3server.sh | 78 ++++++++++++++++++++++++++-------------- 1 file changed, 52 insertions(+), 26 deletions(-) diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 21c76309c..8e0e54c2e 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -1,54 +1,75 @@ #!/bin/bash -# TravisCI Tests: Teamspeak 3 -# Server Management Script +# Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2017 Daniel Gibbs +# Purpose: TravisCI Tests: Teamspeak 3 | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -version="101716" +# Debugging if [ -f ".dev-debug" ]; then exec 5>dev-debug.log BASH_XTRACEFD="5" set -x fi -#### Variables #### +version="170128" -# Notification Alerts -# (on|off) +########################## +######## Settings ######## +########################## + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +# Edit serverfiles/ts3-server.ini after installation -# Email +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email emailalert="off" email="email@example.com" -#emailfrom="email@example.com" +emailfrom="" -# Pushbullet -# https://www.pushbullet.com/#settings +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet pushbulletalert="off" pushbullettoken="accesstoken" +channeltag="" -# Start Variables +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update updateonstart="off" +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" -fn_parms(){ -parms="" -} +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" -#### Advanced Variables #### +#### LinuxGSM Advanced Settings #### -# Github Branch Select +## Github Branch Select # Allows for the use of different function files # from a different repo and/or branch. githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="$TRAVIS_BRANCH" -# Server Details -gamename="Teamspeak 3" -servername="Teamspeak 3 Server" +## LinuxGSM Server Details +# Do not edit +gamename="TeamSpeak 3" +servername="TeamSpeak 3 Server" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers servicename="ts3-server" -# Directories +#### Directories #### +# Edit with care + +## Work Directories rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" lockselfname=".${servicename}.lock" @@ -57,6 +78,8 @@ functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" + +## Server Specific Directories systemdir="${filesdir}" executabledir="${filesdir}" executable="./ts3server_startscript.sh" @@ -64,20 +87,23 @@ servercfg="${servicename}.ini" servercfgdefault="ts3server.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory backupdir="${rootdir}/backups" -# Logging -logdays="7" +## Logging Directories gamelogdir="${filesdir}/logs" scriptlogdir="${rootdir}/log/script" - scriptlog="${scriptlogdir}/${servicename}-script.log" emaillog="${scriptlogdir}/${servicename}-email.log" -scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" -##### Script ##### -# Do not edit +######################## +######## Script ######## +###### Do not edit ##### +######################## # Fetches core_dl for file downloads fn_fetch_core_dl(){ From e16f1a842413cc4a31b3a5d9c4bdf0a49d67a8dd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 28 Jan 2017 22:07:46 +0000 Subject: [PATCH 325/325] Testing possible fix for jc2server test --- tests/tests_jc2server.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index fd0a0e4d7..8fbb910a1 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -575,12 +575,13 @@ echo "gsquery.py will fail to query port." echo "Command: ./jc2server monitor" requiredstatus="ONLINE" fn_setstatus +cp "${servercfgfullpath}" "config.lua" sed -i 's/[0-9]\+/0/' "${servercfgfullpath}" (command_monitor.sh) fn_test_result_fail echo "" fn_print_info_nl "Re-generating ${servercfg}." -install_config.sh +cp -v "config.lua" "${servercfgfullpath}" echo "=================================" echo ""