From e40365d45a21ecbf305037c8245b92d3d6dfb80f Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 12 Oct 2016 02:43:20 -0400 Subject: [PATCH 01/61] adding San Andreas Multiplayer --- SanAndreasMultiplayer/sampserver | 143 +++++++++++++++++++++++++ lgsm/functions/command_install.sh | 2 +- lgsm/functions/install_server_files.sh | 2 + 3 files changed, 146 insertions(+), 1 deletion(-) create mode 100644 SanAndreasMultiplayer/sampserver diff --git a/SanAndreasMultiplayer/sampserver b/SanAndreasMultiplayer/sampserver new file mode 100644 index 000000000..99753333f --- /dev/null +++ b/SanAndreasMultiplayer/sampserver @@ -0,0 +1,143 @@ +#!/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" + +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="samp" + +# Server Details +servicename="samp-server" +gamename="San Andreas Multiplayer" +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" +systemdir="${filesdir}" +executabledir="${systemdir}" +executable="samp03svr" +servercfg="server.cfg" +servercfgdir="${systemdir}" +servercfgfullpath="${servercfgdir}/${servercfg}" +backupdir="${rootdir}/backups" + +# Logging +logdays="7" +gamelogdir="${filesdir}/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 +} + +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 bcfe36fd2..75c44bc67 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}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]; then +elif [ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Enemy Territory" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Mumble" ]|[ "${gamename}" == "San Andreas Multiplayer" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index e1b140bb8..4961deb85 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -23,6 +23,8 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.com/UnrealTournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" + elif [ "${gamename}" == "San Andresas Multiplayer" ]; then + fileurl="http://files.sa-mp.com/samp037svr_R2-1.tar.gz"; filedir="${tmpdir}"; filename="samp037svr_R2-1.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="93705e165550c97484678236749198a4" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From c547ecfe1e57a3e20a870763c1182c98196ecb4e Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 12 Oct 2016 02:46:37 -0400 Subject: [PATCH 02/61] name fix --- 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 4961deb85..1df3af632 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -23,7 +23,7 @@ fn_install_server_files(){ fileurl="http://files.gameservermanagers.com/UnrealTournament/UnrealTournament-Server-XAN-3045522-Linux.zip"; filedir="${tmpdir}"; filename="UnrealTournament-Server-XAN-3045522-Linux.zip"; executecmd="noexecute" run="norun"; force="noforce"; md5="553fed5645a9fc623e92563049bf79f6" elif [ "${gamename}" == "GoldenEye: Source" ]; then fileurl="http://files.gameservermanagers.com/GoldenEyeSource/GoldenEye_Source_v5.0.1_full_server_linux.tar.bz2"; filedir="${tmpdir}"; filename="GoldenEye_Source_v5.0.1_server_full_Linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="ea227a150300abe346e757380325f84c" - elif [ "${gamename}" == "San Andresas Multiplayer" ]; then + elif [ "${gamename}" == "San Andreas Multiplayer" ]; then fileurl="http://files.sa-mp.com/samp037svr_R2-1.tar.gz"; filedir="${tmpdir}"; filename="samp037svr_R2-1.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="93705e165550c97484678236749198a4" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" From 25d8e2f1187f33d602f094a0811623bdd0d43485 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 12 Oct 2016 03:13:08 -0400 Subject: [PATCH 03/61] adding config --- SanAndreasMultiplayer/cfg/lgsm-default.cfg | 17 +++++++++++++++++ lgsm/functions/install_config.sh | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100644 SanAndreasMultiplayer/cfg/lgsm-default.cfg diff --git a/SanAndreasMultiplayer/cfg/lgsm-default.cfg b/SanAndreasMultiplayer/cfg/lgsm-default.cfg new file mode 100644 index 000000000..558aeecbb --- /dev/null +++ b/SanAndreasMultiplayer/cfg/lgsm-default.cfg @@ -0,0 +1,17 @@ +echo Executing Server Config... +lanmode 0 +rcon_password +maxplayers 50 +port 7777 +hostname +gamemode0 grandlarc 1 +filterscripts base gl_actions gl_property gl_realtime +announce 0 +query 1 +weburl www.sa-mp.com +maxnpc 0 +onfoot_rate 40 +incar_rate 40 +weapon_rate 40 +stream_distance 300.0 +stream_rate 1000 diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 5a856f8e6..e829d153b 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -401,6 +401,12 @@ elif [ "${gamename}" == "Rust" ]; then wget -N /dev/null ${githuburl}/Rust/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_defaultconfig +elif [ "${gamename}" == "San Andreas Multiplayer" ]; then + echo -e "downloading server.cfg...\c" + wget -N /dev/null ${githuburl}/SanAndreasMultiplayer/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq + sleep 1 + fn_defaultconfig + fn_userinputconfig elif [ "${gamename}" == "Sven Co-op" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/SvenCoop/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq From 8d060955aa03e6d220b99394e76f51e6cd21ce78 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 12 Oct 2016 03:39:26 -0400 Subject: [PATCH 04/61] config fix --- SanAndreasMultiplayer/cfg/lgsm-default.cfg | 4 ++-- SanAndreasMultiplayer/sampserver | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) mode change 100644 => 100755 SanAndreasMultiplayer/sampserver diff --git a/SanAndreasMultiplayer/cfg/lgsm-default.cfg b/SanAndreasMultiplayer/cfg/lgsm-default.cfg index 558aeecbb..1a1922b60 100644 --- a/SanAndreasMultiplayer/cfg/lgsm-default.cfg +++ b/SanAndreasMultiplayer/cfg/lgsm-default.cfg @@ -1,9 +1,9 @@ echo Executing Server Config... lanmode 0 -rcon_password +rcon_password "" maxplayers 50 port 7777 -hostname +hostname "" gamemode0 grandlarc 1 filterscripts base gl_actions gl_property gl_realtime announce 0 diff --git a/SanAndreasMultiplayer/sampserver b/SanAndreasMultiplayer/sampserver old mode 100644 new mode 100755 index 99753333f..219b9e173 --- a/SanAndreasMultiplayer/sampserver +++ b/SanAndreasMultiplayer/sampserver @@ -28,7 +28,9 @@ pushbullettoken="accesstoken" # Start Variables ip="0.0.0.0" +port="7777" +#no params - check server.cfg fn_parms(){ parms=" " } @@ -57,11 +59,12 @@ libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" systemdir="${filesdir}" -executabledir="${systemdir}" -executable="samp03svr" +executabledir="${systemdir}/samp03" +executable="./samp03svr" servercfg="server.cfg" -servercfgdir="${systemdir}" +servercfgdir="${systemdir}/samp03" servercfgfullpath="${servercfgdir}/${servercfg}" +servercfgdefault="${servercfgdir}/lgsm-default.cfg" backupdir="${rootdir}/backups" # Logging From 2762ce780ae4aa6d237ec360a6e8c610f4cfa5ad Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Wed, 12 Oct 2016 03:43:13 -0400 Subject: [PATCH 05/61] ready for merge --- SanAndreasMultiplayer/sampserver | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SanAndreasMultiplayer/sampserver b/SanAndreasMultiplayer/sampserver index 219b9e173..6fa9a9165 100755 --- a/SanAndreasMultiplayer/sampserver +++ b/SanAndreasMultiplayer/sampserver @@ -30,7 +30,6 @@ pushbullettoken="accesstoken" ip="0.0.0.0" port="7777" -#no params - check server.cfg fn_parms(){ parms=" " } @@ -42,7 +41,7 @@ parms=" " # from a different repo and/or branch. githubuser="dgibbs64" githubrepo="linuxgsm" -githubbranch="samp" +githubbranch="master" # Server Details servicename="samp-server" From 325275052a1fd8a809d843c235d52b8e8d12eb42 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 20:26:06 +0100 Subject: [PATCH 06/61] Added SAMP _default.cfg --- .../config-lgsm/sampserver/_default.cfg | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 lgsm/config-default/config-lgsm/sampserver/_default.cfg diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg new file mode 100644 index 000000000..1cdd73fe3 --- /dev/null +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -0,0 +1,107 @@ +################################## +######## Default Settings ######## +################################## +# DO NOT EDIT WILL BE OVERWRITTEN! +# Copy settings from here and use them in either +# common.cfg - applies settings to every instance +# [instance].cfg - applies settings to a specific instance + +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +ip="0.0.0.0" +port="7777" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +fn_parms(){ +parms="" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) + +# More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info +postalert="off" +postdays="7" +posttarget="https://hastebin.com" + +# Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord +discordalert="off" +discordwebhook="webhook" + +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" + +# IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT +iftttalert="off" +ifttttoken="accesstoken" +iftttevent="linuxgsm_alert" + +# Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun +mailgunalert="off" +mailguntoken="accesstoken" +mailgundomain="example.com" +mailgunemailfrom="alert@example.com" +mailgunemail="email@myemail.com" + +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" +channeltag="" + +# Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover +pushoveralert="off" +pushovertoken="accesstoken" + +# Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram +telegramalert="off" +telegramtoken="accesstoken" +telegramchatid="" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## LinuxGSM Server Details +# Do not edit +gamename="San Andreas Multiplayer" +engine="RenderWare + +#### Directories #### +# Edit with care + +## Server Specific Directories +systemdir="${filesdir}" +executabledir="${systemdir}/samp03" +executable="./samp03svr" +servercfg="server.cfg" +servercfgdir="${systemdir}/samp03" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${rootdir}/backups" + +## Logging Directories +logdir="${rootdir}/log" +gamelogdir="${serverfiles}/Logs" +lgsmlogdir="${logdir}/script" +consolelogdir="${logdir}/console" +lgsmlog="${lgsmlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +alertlog="${lgsmlogdir}/${servicename}-alert.log" +postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log" + +## Logs Naming +lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" From e29b24de2c8eeb2e8ff4e3758469074e759f695e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 20:29:19 +0100 Subject: [PATCH 07/61] Updated SAMP to follow new system --- SanAndreasMultiplayer/cfg/lgsm-default.cfg | 17 --- SanAndreasMultiplayer/sampserver | 145 --------------------- lgsm/functions/install_config.sh | 10 +- 3 files changed, 5 insertions(+), 167 deletions(-) delete mode 100644 SanAndreasMultiplayer/cfg/lgsm-default.cfg delete mode 100755 SanAndreasMultiplayer/sampserver diff --git a/SanAndreasMultiplayer/cfg/lgsm-default.cfg b/SanAndreasMultiplayer/cfg/lgsm-default.cfg deleted file mode 100644 index 1a1922b60..000000000 --- a/SanAndreasMultiplayer/cfg/lgsm-default.cfg +++ /dev/null @@ -1,17 +0,0 @@ -echo Executing Server Config... -lanmode 0 -rcon_password "" -maxplayers 50 -port 7777 -hostname "" -gamemode0 grandlarc 1 -filterscripts base gl_actions gl_property gl_realtime -announce 0 -query 1 -weburl www.sa-mp.com -maxnpc 0 -onfoot_rate 40 -incar_rate 40 -weapon_rate 40 -stream_distance 300.0 -stream_rate 1000 diff --git a/SanAndreasMultiplayer/sampserver b/SanAndreasMultiplayer/sampserver deleted file mode 100755 index 6fa9a9165..000000000 --- a/SanAndreasMultiplayer/sampserver +++ /dev/null @@ -1,145 +0,0 @@ -#!/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="7777" - -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="master" - -# Server Details -servicename="samp-server" -gamename="San Andreas Multiplayer" -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" -systemdir="${filesdir}" -executabledir="${systemdir}/samp03" -executable="./samp03svr" -servercfg="server.cfg" -servercfgdir="${systemdir}/samp03" -servercfgfullpath="${servercfgdir}/${servercfg}" -servercfgdefault="${servercfgdir}/lgsm-default.cfg" -backupdir="${rootdir}/backups" - -# Logging -logdays="7" -gamelogdir="${filesdir}/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 -} - -core_dl.sh -core_functions.sh - -getopt=$1 -core_getopt.sh diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 1340b11e1..62e31e77e 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -463,11 +463,11 @@ elif [ "${gamename}" == "Starbound" ]; then fn_default_config_remote fn_set_config_vars elif [ "${gamename}" == "San Andreas Multiplayer" ]; then - echo -e "downloading server.cfg...\c" - wget -N /dev/null ${githuburl}/SanAndreasMultiplayer/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq - sleep 1 - fn_defaultconfig - fn_userinputconfig + gamedirname="SanAndreasMultiplayer" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Sven Co-op" ]; then gamedirname="SvenCoop" array_configs+=( server.cfg ) From 64f5e1dd9c415f389a7597056d1267bc6394ccf9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 20:30:16 +0100 Subject: [PATCH 08/61] Added SAMP --- lgsm/data/serverlist.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/data/serverlist.csv b/lgsm/data/serverlist.csv index f4247eee3..a79a71552 100644 --- a/lgsm/data/serverlist.csv +++ b/lgsm/data/serverlist.csv @@ -54,6 +54,7 @@ qw,qwserver,Quake World ro,roserver,Red Orchestra: Ostfront 41-45 ricochet,ricochetserver,Ricochet rust,rustserver,Rust +samp,sampserver,San Andreas Multiplayer ss3,ss3server,Serious Sam 3: BFE sb,sbserver,Starbound squad,squadserver,Squad From c381d2524da4d2e8082f82fe5ecaf8dba9804682 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 20:32:56 +0100 Subject: [PATCH 09/61] bug --- lgsm/config-default/config-lgsm/sampserver/_default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index 1cdd73fe3..cddc8943d 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -76,7 +76,7 @@ logdays="7" ## LinuxGSM Server Details # Do not edit gamename="San Andreas Multiplayer" -engine="RenderWare +engine="RenderWare" #### Directories #### # Edit with care From c0fafd9a6f3794f0af85aca5e21c2105534a768a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 20:47:27 +0100 Subject: [PATCH 10/61] Changed to if no appid --- 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 0a4f03cee..25c2bb1cd 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -19,7 +19,7 @@ installflag=1 if [ "${gamename}" == "Unreal Tournament 2004" ]; then install_server_files.sh install_ut2k4_key.sh -elif [ "${gamename}" == "Battlefield: 1942" ]||[ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty: United Offensive" ]||[ "${gamename}" == "Call of Duty 2" ]||[ "${gamename}" == "Call of Duty 4" ]||[ "${gamename}" == "Call of Duty: World at War" ]||[ "${gamename}" == "Factorio" ]||[ "${gamename}" == "Minecraft" ]||[ "${gamename}" == "Multi Theft Auto" ]||[ "${gamename}" == "Quake 2" ]||[ "${gamename}" == "Quake 3: Arena" ]||[ "${gamename}" == "QuakeWorld" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament" ]||[ "${gamename}" == "Unreal Tournament 3" ]||[ "${gamename}" == "TeamSpeak 3" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then +elif [ -z "${appid}" ]; then installer=1 install_server_files.sh elif [ -n "${appid}" ]; then From dd2238147798ff73416eed58eede99544289de24 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 20:49:06 +0100 Subject: [PATCH 11/61] updated md5dum --- 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 33285f6b0..0768b7d98 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 remote_fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; local_filedir="${tmpdir}"; local_filename="enemy-territory.260b.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="f833f514bfcdd46b42c111f83350c5a7" elif [ "${gamename}" == "San Andreas Multiplayer" ]; then - fileurl="http://files.sa-mp.com/samp037svr_R2-1.tar.gz"; filedir="${tmpdir}"; filename="samp037svr_R2-1.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="93705e165550c97484678236749198a4" + fileurl="http://files.sa-mp.com/samp037svr_R2-1.tar.gz"; filedir="${tmpdir}"; filename="samp037svr_R2-1.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="6d8fc6f94cd06787406386038d728a5f" fi fn_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" fn_dl_extract "${local_filedir}" "${local_filename}" "${serverfiles}" From 4301824aaef3e909e5d2d4f923d5e4efea76de11 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 20:58:53 +0100 Subject: [PATCH 12/61] corrected download vars --- 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 0768b7d98..373ff7f65 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 remote_fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; local_filedir="${tmpdir}"; local_filename="enemy-territory.260b.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="f833f514bfcdd46b42c111f83350c5a7" elif [ "${gamename}" == "San Andreas Multiplayer" ]; then - fileurl="http://files.sa-mp.com/samp037svr_R2-1.tar.gz"; filedir="${tmpdir}"; filename="samp037svr_R2-1.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="6d8fc6f94cd06787406386038d728a5f" + fileurl="http://files.sa-mp.com/samp037svr_R2-1.tar.gz"; filedir="${tmpdir}"; local_filedir="${tmpdir}"; local_filename="samp037svr_R2-1.tar.gz"; chmodx="nochmodx" run="norun"; force="noforce"; md5="6d8fc6f94cd06787406386038d728a5f" fi fn_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" fn_dl_extract "${local_filedir}" "${local_filename}" "${serverfiles}" From a86f158ee27c4f1cdb2b5db5b036a9c1290e7aca Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 21:54:21 +0100 Subject: [PATCH 13/61] corrected vars --- lgsm/config-default/config-lgsm/sampserver/_default.cfg | 2 +- lgsm/functions/install_server_files.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index cddc8943d..235c5d058 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -82,7 +82,7 @@ engine="RenderWare" # Edit with care ## Server Specific Directories -systemdir="${filesdir}" +systemdir="${servefiles}" executabledir="${systemdir}/samp03" executable="./samp03svr" servercfg="server.cfg" diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 373ff7f65..cee1c928c 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 remote_fileurl="http://files.gameservermanagers.com/WolfensteinEnemyTerritory/enemy-territory.260b.tar.bz2"; local_filedir="${tmpdir}"; local_filename="enemy-territory.260b.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="f833f514bfcdd46b42c111f83350c5a7" elif [ "${gamename}" == "San Andreas Multiplayer" ]; then - fileurl="http://files.sa-mp.com/samp037svr_R2-1.tar.gz"; filedir="${tmpdir}"; local_filedir="${tmpdir}"; local_filename="samp037svr_R2-1.tar.gz"; chmodx="nochmodx" run="norun"; force="noforce"; md5="6d8fc6f94cd06787406386038d728a5f" + remote_fileurl="http://files.sa-mp.com/samp037svr_R2-1.tar.gz"; local_filedir="${tmpdir}"; local_filename="samp037svr_R2-1.tar.gz"; chmodx="nochmodx" run="norun"; force="noforce"; md5="93705e165550c97484678236749198a4" fi fn_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" fn_dl_extract "${local_filedir}" "${local_filename}" "${serverfiles}" From 8694a72f4c6757bbef7f5c6e360a5161c128a22f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 22:12:02 +0100 Subject: [PATCH 14/61] missing r --- lgsm/config-default/config-lgsm/sampserver/_default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index 235c5d058..8884fdf17 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -82,7 +82,7 @@ engine="RenderWare" # Edit with care ## Server Specific Directories -systemdir="${servefiles}" +systemdir="${serverfiles}" executabledir="${systemdir}/samp03" executable="./samp03svr" servercfg="server.cfg" From c76aa0303dd5e804a0b256f7bc3586227dcd5ce0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 22:20:25 +0100 Subject: [PATCH 15/61] Added SAMP glibc requirements --- 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 dca0c6238..bcb66a245 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -89,6 +89,9 @@ elif [ "${gamename}" == "Quake 3: Arena" ]; then elif [ "${gamename}" == "Quake Live" ]; then glibcrequired="2.15" glibcfix="no" +elif [ "${gamename}" == "San Andreas Multiplayer" ]; then + glibcrequired="2.3" + glibcfix="no" elif [ "${gamename}" == "Squad" ]; then glibcrequired="2.17" glibcfix="no" From f1c0b8ea001875ec5c43e59a8b69250a1540d9c8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 23:22:55 +0100 Subject: [PATCH 16/61] added if to reduce externalip queries if extip already exists then skip over the query. Should help reduce the chance of getting error 429 Too Many Requests --- lgsm/functions/info_distro.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index b2f75b78b..570e856c1 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -135,4 +135,6 @@ if [ -d "${backupdir}" ]; then fi # External IP address -extip=$(curl -m 3 ifconfig.co 2>/dev/null) \ No newline at end of file +if [ -z "${extip}" ];then + extip=$(curl -m 3 ifconfig.co 2>/dev/null) +fi \ No newline at end of file From ba42c625ba5d5a8c5f13c02e5f9e72e7f928182b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 23:24:31 +0100 Subject: [PATCH 17/61] updated gamelog dir --- lgsm/config-default/config-lgsm/sampserver/_default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index 8884fdf17..7179b8139 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -94,7 +94,7 @@ backupdir="${rootdir}/backups" ## Logging Directories logdir="${rootdir}/log" -gamelogdir="${serverfiles}/Logs" +gamelogdir="${serverfiles}/samp03" lgsmlogdir="${logdir}/script" consolelogdir="${logdir}/console" lgsmlog="${lgsmlogdir}/${servicename}-script.log" From 504f398536d56d75605670e87b595eded45f9e55 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 23:45:05 +0100 Subject: [PATCH 18/61] added SAMP --- lgsm/functions/info_config.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index da6b0a6f4..5eef23553 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -521,6 +521,26 @@ fn_info_config_mumble(){ fi } +fn_info_config_samp(){ + if [ ! -f "${servercfgfullpath}" ]; then + servername="unnamed server" + serverpassword="${unavailable}" + rconpassword="${unavailable}" + port="7777" + maxplayers="50" + else + servername=$(grep "hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/^rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + port=$(grep "port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + maxplayers=$(grep "maxplayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + + # Not Set + servername=${servername:-"NOT SET"} + rconpassword=${rconpassword:-"NOT SET"} + port=${port:-"8303"} + maxplayers=${maxplayers:-"12"} +} + fn_info_config_teeworlds(){ if [ ! -f "${servercfgfullpath}" ]; then servername="unnamed server" @@ -895,8 +915,12 @@ elif [ "${engine}" == "starbound" ]; then # TeamSpeak 3 elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_info_config_teamspeak3 +# Mumble elif [ "${gamename}" == "Mumble" ]; then fn_info_config_mumble +# San Andreas Multiplayer +elif [ "${gamename}" == "San Andreas Multiplayer" ]; then + fn_info_config_samp # Teeworlds elif [ "${engine}" == "teeworlds" ]; then fn_info_config_teeworlds From 87219949f2fdf48648d8e9ec7a4de40b0204da4b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 23:48:10 +0100 Subject: [PATCH 19/61] changed engine --- lgsm/config-default/config-lgsm/sampserver/_default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index 7179b8139..07d30a73b 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -76,7 +76,7 @@ logdays="7" ## LinuxGSM Server Details # Do not edit gamename="San Andreas Multiplayer" -engine="RenderWare" +engine="renderware" #### Directories #### # Edit with care From 2498a0505055417b0a4d631cacb8e4231c809553 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 23:55:00 +0100 Subject: [PATCH 20/61] missing fi --- lgsm/functions/info_config.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 5eef23553..600a92f36 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -539,6 +539,7 @@ fn_info_config_samp(){ rconpassword=${rconpassword:-"NOT SET"} port=${port:-"8303"} maxplayers=${maxplayers:-"12"} + fi } fn_info_config_teeworlds(){ From 22e5f14478e8e66fea3c18cff943de5234784525 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Sep 2017 23:59:59 +0100 Subject: [PATCH 21/61] added samp details --- lgsm/functions/info_messages.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 87b62f64e..78f1db000 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -707,6 +707,16 @@ fn_info_message_rust(){ } | column -s $'\t' -t } +fn_info_message_samp(){ + echo -e "netstat -atunp | grep samp03svr" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game/RCON\tINBOUND\t${port}\ttcp/udp" + } | column -s $'\t' -t +} + + fn_info_message_seriousengine35(){ echo -e "netstat -atunp | grep Sam3_Dedicate" echo -e "" @@ -977,6 +987,8 @@ fn_info_message_select_engine(){ fn_info_message_quake3 elif [ "${gamename}" == "Quake Live" ]; then fn_info_message_quakelive + elif [ "${gamename}" == "San Andreas Multiplayer" ]; then + fn_info_message_samp elif [ "${gamename}" == "Squad" ]; then fn_info_message_squad elif [ "${gamename}" == "TeamSpeak 3" ]; then From 1547dd13d8775159433215d778cd5f29ffcd4ad9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 1 Oct 2017 00:19:22 +0100 Subject: [PATCH 22/61] samp does not update --- 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 794e60067..fbc14d24a 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -56,7 +56,7 @@ currentopt=( "${cmd_start[@]}" "${cmd_stop[@]}" "${cmd_restart[@]}" "${cmd_monit currentopt+=( "${cmd_update_linuxgsm[@]}" ) # Exclude noupdate games here -if [ "${gamename}" != "Battlefield: 1942" ]&&[ "${engine}" != "quake" ]&&[ "${engine}" != "idtech2" ]&&[ "${engine}" != "idtech3" ]&&[ "${engine}" != "iw2.0" ]&&[ "${engine}" != "iw3.0" ]; then +if [ "${gamename}" != "Battlefield: 1942" ]&&[ "${engine}" != "quake" ]&&[ "${engine}" != "idtech2" ]&&[ "${engine}" != "idtech3" ]&&[ "${engine}" != "iw2.0" ]&&[ "${engine}" != "iw3.0" ]&&[ "${gamename}" != "San Andreas Multiplayer" ]; then currentopt+=( "${cmd_update[@]}" ) # force update for SteamCMD only or MTA if [ -n "${appid}" ] || [ "${gamename}" == "Multi Theft Auto" ]; then From a6ff34c4aec5d903c0fec3878ae8e2b59a088756 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 1 Oct 2017 21:25:25 +0100 Subject: [PATCH 23/61] added bc and binutils --- 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 c022352a7..6ac52ded3 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -145,7 +145,7 @@ if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then array_deps_missing=() # LinuxGSM requirements - array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip binutils ) + array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip binutils bc ) # All servers except ts3 require tmux if [ "${gamename}" != "TeamSpeak 3" ]; then @@ -231,9 +231,9 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # LinuxGSM requirements if [ "${distroversion}" == "6" ]; then - array_deps_required=( curl wget util-linux-ng python file gzip bzip2 unzip ) + array_deps_required=( curl wget util-linux-ng python file gzip bzip2 unzip binutils bc ) else - array_deps_required=( curl wget util-linux python file gzip bzip2 unzip ) + array_deps_required=( curl wget util-linux python file gzip bzip2 unzip binutils bc ) fi # All servers except ts3 require tmux From c1c976002be9fabe7fa2e7c4a14a6461fdc161b2 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Wed, 4 Oct 2017 20:03:21 +0200 Subject: [PATCH 24/61] Combined similar graceful stop functions into one by making the console command and timeout parameters. --- lgsm/functions/command_stop.sh | 121 ++++++--------------------------- 1 file changed, 20 insertions(+), 101 deletions(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 6c48a5cd9..10e95d45c 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -37,29 +37,31 @@ fn_stop_graceful_ctrlc(){ fn_stop_tmux } -# Attempts graceful shutdown by sending the 'quit' command. -fn_stop_graceful_quit(){ - fn_print_dots "Graceful: sending \"quit\"" - fn_script_log_info "Graceful: sending \"quit\"" - # sends quit - tmux send -t "${servicename}" quit ENTER > /dev/null 2>&1 - # waits up to 30 seconds giving the server time to shutdown gracefuly - for seconds in {1..30}; do +# Attempts graceful shutdown by sending a specified command. +# Usage: fn_stop_graceful_cmd "console_command" "timeout_in_seconds" +# e.g.: fn_stop_graceful_cmd "quit" "30" +fn_stop_graceful_cmd(){ + fn_print_dots "Graceful: sending \"${1}\"" + fn_script_log_info "Graceful: sending \"${1}\"" + # sends specific stop command + tmux send -t "${servicename}" ${1} ENTER > /dev/null 2>&1 + # waits up to given seconds giving the server time to shutdown gracefully + for ((seconds=1; seconds<=${2}; seconds++)); do check_status.sh if [ "${status}" == "0" ]; then - fn_print_ok "Graceful: sending \"quit\": ${seconds}: " + fn_print_ok "Graceful: sending \"${1}\": ${seconds}: " fn_print_ok_eol_nl - fn_script_log_pass "Graceful: sending \"quit\": OK: ${seconds} seconds" + fn_script_log_pass "Graceful: sending \"${1}\": OK: ${seconds} seconds" break fi sleep 1 - fn_print_dots "Graceful: sending \"quit\": ${seconds}" + fn_print_dots "Graceful: sending \"${1}\": ${seconds}" done check_status.sh if [ "${status}" != "0" ]; then - fn_print_error "Graceful: sending \"quit\": " + fn_print_error "Graceful: sending \"${1}\": " fn_print_fail_eol_nl - fn_script_log_error "Graceful: sending \"quit\": FAIL" + fn_script_log_error "Graceful: sending \"${1}\": FAIL" fi sleep 1 fn_stop_tmux @@ -175,105 +177,22 @@ fn_stop_graceful_sdtd(){ fn_stop_tmux } -# Attempts graceful of Minecraft using rcon 'stop' command. -fn_stop_graceful_minecraft(){ - fn_print_dots "Graceful: sending \"stop\"" - fn_script_log_info "Graceful: sending \"stop\"" - # sends quit - tmux send -t "${servicename}" stop ENTER > /dev/null 2>&1 - # waits up to 30 seconds giving the server time to shutdown gracefuly - for seconds in {1..30}; do - check_status.sh - if [ "${status}" == "0" ]; then - fn_print_ok "Graceful: sending \"stop\": ${seconds}: " - fn_print_ok_eol_nl - fn_script_log_pass "Graceful: sending \"stop\": OK: ${seconds} seconds" - break - fi - sleep 1 - fn_print_dots "Graceful: sending \"stop\": ${seconds}" - done - check_status.sh - if [ "${status}" != "0" ]; then - fn_print_error "Graceful: sending \"stop\": " - fn_print_fail_eol_nl - fn_script_log_error "Graceful: sending \"stop\": FAIL" - fi - sleep 1 - fn_stop_tmux -} - -# Attempts graceful of mta using rcon 'quit' command. -fn_stop_graceful_mta(){ - fn_print_dots "Graceful: sending \"quit\"" - fn_script_log_info "Graceful: sending \"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: sending \"quit\": ${seconds}: " - fn_print_ok_eol_nl - fn_script_log_pass "Graceful: sending \"quit\": OK: ${seconds} seconds" - break - fi - sleep 1 - fn_print_dots "Graceful: sending \"quit\": ${seconds}" - done - check_status.sh - if [ "${status}" != "0" ]; then - fn_print_error "Graceful: sending \"quit\": " - fn_print_fail_eol_nl - fn_script_log_error "Graceful: sending \"quit\": FAIL" - fi - sleep 1 - fn_stop_tmux -} - -# Attempts graceful of Terraria using 'exit' console command. -fn_stop_graceful_terraria(){ - fn_print_dots "Graceful: sending \"exit\"" - fn_script_log_info "Graceful: sending \"exit\"" - # sends exit - tmux send -t "${servicename}" exit ENTER > /dev/null 2>&1 - # waits up to 30 seconds giving the server time to shutdown gracefuly - for seconds in {1..30}; do - check_status.sh - if [ "${status}" == "0" ]; then - fn_print_ok "Graceful: sending \"exit\": ${seconds}: " - fn_print_ok_eol_nl - fn_script_log_pass "Graceful: sending \"exit\": OK: ${seconds} seconds" - break - fi - sleep 1 - fn_print_dots "Graceful: sending \"exit\": ${seconds}" - done - check_status.sh - if [ "${status}" != "0" ]; then - fn_print_error "Graceful: sending \"exit\": " - fn_print_fail_eol_nl - fn_script_log_error "Graceful: sending \"exit\": FAIL" - fi - sleep 1 - fn_stop_tmux -} - fn_stop_graceful_select(){ if [ "${gamename}" == "7 Days To Die" ]; then fn_stop_graceful_sdtd elif [ "${gamename}" == "Terraria" ]; then - fn_stop_graceful_terraria + fn_stop_graceful_cmd "exit" 30 elif [ "${gamename}" == "Minecraft" ]; then - fn_stop_graceful_minecraft + fn_stop_graceful_cmd "stop" 30 elif [ "${gamename}" == "Multi Theft Auto" ]; then - fn_stop_graceful_mta + # we need a long wait time here as resources are stopped individually and process their own shutdowns + fn_stop_graceful_cmd "quit" 120 elif [ "${engine}" == "goldsource" ]; then fn_stop_graceful_goldsource elif [ "${gamename}" == "Factorio" ]||[ "${engine}" == "unity3d" ]||[ "${engine}" == "unreal4" ]||[ "${engine}" == "unreal3" ]||[ "${engine}" == "unreal2" ]||[ "${engine}" == "unreal" ]||[ "${gamename}" == "Mumble" ]; then fn_stop_graceful_ctrlc elif [ "${engine}" == "source" ]||[ "${engine}" == "quake" ]||[ "${engine}" == "idtech2" ]||[ "${engine}" == "idtech3" ]||[ "${engine}" == "idtech3_ql" ]||[ "${engine}" == "Just Cause 2" ]; then - fn_stop_graceful_quit + fn_stop_graceful_cmd "quit" 30 else fn_stop_tmux fi From e6bd1a12f0abe484229ee05b0f80b9836f004a56 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Wed, 4 Oct 2017 20:10:33 +0200 Subject: [PATCH 25/61] Added graceful stop support for Project Zomboid --- 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 10e95d45c..5ab2c2cce 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -191,7 +191,7 @@ fn_stop_graceful_select(){ fn_stop_graceful_goldsource elif [ "${gamename}" == "Factorio" ]||[ "${engine}" == "unity3d" ]||[ "${engine}" == "unreal4" ]||[ "${engine}" == "unreal3" ]||[ "${engine}" == "unreal2" ]||[ "${engine}" == "unreal" ]||[ "${gamename}" == "Mumble" ]; then fn_stop_graceful_ctrlc - elif [ "${engine}" == "source" ]||[ "${engine}" == "quake" ]||[ "${engine}" == "idtech2" ]||[ "${engine}" == "idtech3" ]||[ "${engine}" == "idtech3_ql" ]||[ "${engine}" == "Just Cause 2" ]; then + elif [ "${engine}" == "source" ]||[ "${engine}" == "quake" ]||[ "${engine}" == "idtech2" ]||[ "${engine}" == "idtech3" ]||[ "${engine}" == "idtech3_ql" ]||[ "${engine}" == "Just Cause 2" ]||[ "${engine}" == "projectzomboid" ]; then fn_stop_graceful_cmd "quit" 30 else fn_stop_tmux From e03078e0e0688629b7c374949f1053dabb8fc25f Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Wed, 4 Oct 2017 22:44:36 +0200 Subject: [PATCH 26/61] Corrected Ricochet config Removed duplicated and unsupported stuff --- .../config-lgsm/ricochetserver/_default.cfg | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg index 61217f96b..c125fef3f 100644 --- a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg @@ -20,25 +20,6 @@ fn_parms(){ parms="-game ricochet -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } -########################## -######## Settings ######## -########################## - -#### Server Settings #### - -## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -ip="0.0.0.0" - -## Optional: Game Server Login Token -# GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt -gslt="" - -## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -fn_parms(){ -parms="" -} - #### LinuxGSM Settings #### ## Notification Alerts From 5bde4f38614303c42336471111ac4aa5ef2d936c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 7 Oct 2017 14:54:46 +0100 Subject: [PATCH 27/61] Added fix_kf2.sh --- lgsm/functions/core_functions.sh | 5 +++++ lgsm/functions/fix.sh | 14 +------------- lgsm/functions/fix_kf2.sh | 19 +++++++++++++++++++ 3 files changed, 25 insertions(+), 13 deletions(-) create mode 100644 lgsm/functions/fix_kf2.sh diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 562d5cbe6..49e89fba7 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -326,6 +326,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_kf2.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + fix_ut2k4.sh(){ functionfile="${FUNCNAME}" fn_fetch_function diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 04c3a6748..5c03a8f32 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -63,29 +63,17 @@ fi # Fixes that are run on install only. if [ "${function_selfname}" == "command_install.sh" ]; then - if [ "${gamename}" == "Killing Floor" ]; then echo "" echo "Applying ${gamename} Server Fixes" echo "=================================" sleep 1 + if [ "${gamename}" == "Killing Floor" ]; then fix_kf.sh elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then - echo "" - echo "Applying ${gamename} Server Fixes" - echo "=================================" - sleep 1 fix_ro.sh elif [ "${gamename}" == "Unreal Tournament 2004" ]; then - echo "" - echo "Applying ${gamename} Server Fixes" - echo "=================================" - sleep 1 fix_ut2k4.sh elif [ "${gamename}" == "Unreal Tournament" ]; then - echo "" - echo "Applying ${gamename} Server Fixes" - echo "=================================" - sleep 1 fix_ut.sh fi fi diff --git a/lgsm/functions/fix_kf2.sh b/lgsm/functions/fix_kf2.sh new file mode 100644 index 000000000..f9eaf2d71 --- /dev/null +++ b/lgsm/functions/fix_kf2.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# LinuxGSM fix_kf3.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Resolves various issues with Killing Floor 2. + +local commandname="FIX" +local commandaction="Fix" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +fn_parms(){ +parms="\"${defaultmap}?Game=KFGameContent.KFGameInfo_VersusSurvival\"" +} + +fn_print_information "starting Killing Floor 2 server to generate configs." +sleep 1 +command_start.sh +sleep 10 +command_stop.sh \ No newline at end of file From 19f250e701da235e5080dadfc8afde67322bb927 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 7 Oct 2017 15:02:37 +0100 Subject: [PATCH 28/61] Added KF2 fix --- lgsm/functions/fix.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 5c03a8f32..2fd0d9bca 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -69,6 +69,8 @@ if [ "${function_selfname}" == "command_install.sh" ]; then sleep 1 if [ "${gamename}" == "Killing Floor" ]; then fix_kf.sh + elif [ "${gamename}" == "Killing Floor 2" ]; then + fix_kf2.sh elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then fix_ro.sh elif [ "${gamename}" == "Unreal Tournament 2004" ]; then From e1a400a7e952c2febf426322422d092e1a28f970 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 7 Oct 2017 15:08:37 +0100 Subject: [PATCH 29/61] added exitbypass --- lgsm/functions/fix_kf2.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/fix_kf2.sh b/lgsm/functions/fix_kf2.sh index f9eaf2d71..29237a4eb 100644 --- a/lgsm/functions/fix_kf2.sh +++ b/lgsm/functions/fix_kf2.sh @@ -14,6 +14,7 @@ parms="\"${defaultmap}?Game=KFGameContent.KFGameInfo_VersusSurvival\"" fn_print_information "starting Killing Floor 2 server to generate configs." sleep 1 +exitbypass=1 command_start.sh sleep 10 command_stop.sh \ No newline at end of file From c1b641e5b992b42cd41baa1f291c10f835355af4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 8 Oct 2017 18:28:17 +0100 Subject: [PATCH 30/61] changed to && --- lgsm/functions/check_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_config.sh b/lgsm/functions/check_config.sh index bbb8b7054..1b719c3b1 100644 --- a/lgsm/functions/check_config.sh +++ b/lgsm/functions/check_config.sh @@ -8,7 +8,7 @@ local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" if [ ! -e "${servercfgfullpath}" ]; then - if [ "${gamename}" != "Hurtworld" ]||[ "${shortname}" != "ut3" ]||[ "${shortname}" != "kf2" ]; then + if [ "${gamename}" != "Hurtworld" ]&&[ "${shortname}" != "ut3" ]&&[ "${shortname}" != "kf2" ]; then fn_print_dots "" sleep 0.5 fn_print_warn_nl "Configuration file missing!" From 298d157087628dcabcd08044b30bbfd09f73aec3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 8 Oct 2017 19:52:10 +0100 Subject: [PATCH 31/61] Moved Config download message --- lgsm/functions/install_config.sh | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 65c1c9cf5..0eac4e01d 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -19,6 +19,11 @@ fn_check_cfgdir(){ # Downloads default configs from Game-Server-Configs repo to lgsm/config-default fn_fetch_default_config(){ + echo "" + echo "Downloading ${gamename} Configs" + echo "=================================" + echo "default configs from https://github.com/GameServerManagers/Game-Server-Configs" + sleep 1 mkdir -p "${lgsmdir}/config-default/config-game" githuburl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/master" for config in "${array_configs[@]}"; do @@ -118,11 +123,6 @@ fn_set_dst_config_vars(){ echo "" } -echo "" -echo "Downloading ${gamename} Config" -echo "=================================" -echo "default configs from https://github.com/GameServerManagers/Game-Server-Configs" -sleep 2 if [ "${gamename}" == "7 Days To Die" ]; then gamedirname="7DaysToDie" array_configs+=( serverconfig.xml ) @@ -383,10 +383,6 @@ elif [ "${gamename}" == "Mumble" ]; then array_configs+=( murmur.ini ) fn_fetch_default_config fn_default_config_remote -elif [ "${gamename}" == "Natural Selection 2" ]; then - : -elif [ "${gamename}" == "NS2: Combat" ]; then - : elif [ "${gamename}" == "Pirates, Vikings, and Knights II" ]; then gamedirname="PiratesVikingandKnightsII" array_configs+=( server.cfg ) @@ -430,8 +426,6 @@ elif [ "${gamename}" == "QuakeWorld" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars -elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then - : elif [ "${gamename}" == "Ricochet" ]; then gamedirname="Ricochet" array_configs+=( server.cfg ) From 53d532bdd759d50df86dddcf528556e3c91cb6bc Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 20:50:08 +0100 Subject: [PATCH 32/61] added missing quotes --- lgsm/functions/command_dev_detect_ldd.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_dev_detect_ldd.sh b/lgsm/functions/command_dev_detect_ldd.sh index 312b037a4..3bdc2fc36 100644 --- a/lgsm/functions/command_dev_detect_ldd.sh +++ b/lgsm/functions/command_dev_detect_ldd.sh @@ -26,13 +26,13 @@ files=$(find "${serverfiles}" | wc -l) find "${serverfiles}" -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 - echo "$line" >> "${tmpdir}/detect_ldd.tmp" - ldd $line 2>/dev/null |grep -v "not a dynamic executable" >> "${tmpdir}/detect_ldd.tmp" + if [ -n "$(ldd ${line} 2>/dev/null |grep -v "not a dynamic executable")" ]; then + echo "${line}" >> "${tmpdir}/detect_ldd.tmp" + ldd "${line}" 2>/dev/null |grep -v "not a dynamic executable" >> "${tmpdir}/detect_ldd.tmp" if [ -n "$(ldd $line 2>/dev/null |grep -v "not a dynamic executable"|grep "not found")" ]; then - echo "$line" >> "${tmpdir}/detect_ldd_not_found.tmp" - ldd $line 2>/dev/null |grep -v "not a dynamic executable"|grep "not found" >> "${tmpdir}/detect_ldd_not_found.tmp" + echo "${line}" >> "${tmpdir}/detect_ldd_not_found.tmp" + ldd "${line} 2>/dev/null |grep -v "not a dynamic executable"|grep "not found" >> "${tmpdir}/detect_ldd_not_found.tmp" fi fi echo -n "$i / $files" $'\r' From fbfa4bbe7d30aa4b1d224ea47657b4772a95aafd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 20:50:30 +0100 Subject: [PATCH 33/61] added extra requirements --- .travis.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index d385c27fa..d38ffd2a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,12 +13,14 @@ addons: packages: - tmux - mailutils - - postfix - - lib32gcc1 - - libstdc++6 - - libstdc++6:i386 - - telnet + - postfix + - lib32gcc1 + - libstdc++6 + - libstdc++6:i386 + - telnet - expect + - bc + - binutils script: From 38a48582a3d8be31fd27be76a8c11b50830aa518 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 20:53:22 +0100 Subject: [PATCH 34/61] added new tests --- tests/tests_jc2server.sh | 63 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 59 insertions(+), 4 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index ee067c6f5..4b9f30348 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -423,7 +423,7 @@ fn_setstatus(){ # End of every test will expect the result to either pass or fail # If the script does not do as intended the whole test will fail -# if excpecting a pass +# if expecting a pass fn_test_result_pass(){ if [ $? != 0 ]; then echo "=================================" @@ -441,7 +441,7 @@ fn_test_result_pass(){ fi } -# if excpecting a fail +# if expecting a fail fn_test_result_fail(){ if [ $? == 0 ]; then echo "=================================" @@ -706,10 +706,10 @@ echo "=================================" echo "Description:" echo "runs update-functions." echo "" -echo "Command: ./jc2server update-functions" +echo "Command: ./jc2server update-lgsm" requiredstatus="OFFLINE" fn_setstatus -(command_update_functions.sh) +(command_update_linuxgsm.sh) fn_test_result_pass echo "" @@ -777,6 +777,61 @@ fn_setstatus (command_details.sh) fn_test_result_pass +echo "" +echo "6.1 - post details" +echo "=================================" +echo "Description:" +echo "display details." +echo "Command: ./jc2server postdetails" +requiredstatus="ONLINE" +fn_setstatus +(command_postdetails.sh) +fn_test_result_pass + +echo "" +echo "7.0 - backup" +echo "=================================" +echo "Description:" +echo "display details." +echo "Command: ./jc2server backup" +requiredstatus="ONLINE" +fn_setstatus +(command_backup.sh) +fn_test_result_pass + +echo "" +echo "8.0 - dev - detect glibc" +echo "=================================" +echo "Description:" +echo "display details." +echo "Command: ./jc2server detect-glibc" +requiredstatus="ONLINE" +fn_setstatus +(command_dev_detect_glibc.sh) +fn_test_result_pass + +echo "" +echo "8.1 - dev - detect ldd" +echo "=================================" +echo "Description:" +echo "display details." +echo "Command: ./jc2server detect-ldd" +requiredstatus="ONLINE" +fn_setstatus +(command_dev_detect_ldd.sh) +fn_test_result_pass + +echo "" +echo "8.2 - dev - detect deps" +echo "=================================" +echo "Description:" +echo "display details." +echo "Command: ./jc2server detect-deps" +requiredstatus="ONLINE" +fn_setstatus +(command_dev_detect_deps.sh) +fn_test_result_pass + echo "" echo "=================================" echo "Server Tests - Complete!" From 4a025973e330992b4466c716426d2d600cd251b3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 21:02:13 +0100 Subject: [PATCH 35/61] removed test 4.9 update functions as forces the test to exit --- tests/tests_jc2server.sh | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 4b9f30348..6e70f0ef4 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -700,18 +700,6 @@ fn_setstatus (command_validate.sh) fn_test_result_pass -echo "" -echo "4.9 - update-functions" -echo "=================================" -echo "Description:" -echo "runs update-functions." -echo "" -echo "Command: ./jc2server update-lgsm" -requiredstatus="OFFLINE" -fn_setstatus -(command_update_linuxgsm.sh) -fn_test_result_pass - echo "" echo "5.1 - monitor - online" echo "=================================" @@ -723,7 +711,6 @@ fn_setstatus (command_monitor.sh) fn_test_result_pass - echo "" echo "5.2 - monitor - offline - with lockfile" echo "=================================" @@ -737,7 +724,6 @@ date > "${rootdir}/${lockselfname}" (command_monitor.sh) fn_test_result_pass - echo "" echo "5.3 - monitor - offline - no lockfile" echo "=================================" @@ -781,7 +767,7 @@ echo "" echo "6.1 - post details" echo "=================================" echo "Description:" -echo "display details." +echo "post details." echo "Command: ./jc2server postdetails" requiredstatus="ONLINE" fn_setstatus @@ -792,7 +778,7 @@ echo "" echo "7.0 - backup" echo "=================================" echo "Description:" -echo "display details." +echo "run a backup." echo "Command: ./jc2server backup" requiredstatus="ONLINE" fn_setstatus @@ -803,7 +789,7 @@ echo "" echo "8.0 - dev - detect glibc" echo "=================================" echo "Description:" -echo "display details." +echo "detect glibc." echo "Command: ./jc2server detect-glibc" requiredstatus="ONLINE" fn_setstatus @@ -814,7 +800,7 @@ echo "" echo "8.1 - dev - detect ldd" echo "=================================" echo "Description:" -echo "display details." +echo "detect ldd." echo "Command: ./jc2server detect-ldd" requiredstatus="ONLINE" fn_setstatus @@ -825,7 +811,7 @@ echo "" echo "8.2 - dev - detect deps" echo "=================================" echo "Description:" -echo "display details." +echo "detect dependencies." echo "Command: ./jc2server detect-deps" requiredstatus="ONLINE" fn_setstatus From 6847c9136e88bbf83ea920bd4e9bbdd2ff6fa61a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 21:21:47 +0100 Subject: [PATCH 36/61] updated requirements --- .travis.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index d38ffd2a2..1bba50377 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,16 +11,24 @@ addons: sources: - ubuntu-toolchain-r-test packages: - - tmux - mailutils - postfix + - curl + - wget + - file + - bzip2 + - gzip + - unzip + - bsdmainutils + - python + - util-linux + - ca-certificates + - binutils + - bc + - tmux - lib32gcc1 - libstdc++6 - libstdc++6:i386 - - telnet - - expect - - bc - - binutils script: From 5fa808deccb387c8c7538a112783f7d8c8dd37b4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 21:55:14 +0100 Subject: [PATCH 37/61] testing IP insert feature --- tests/tests_jc2server.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 6e70f0ef4..0f89cc22e 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -528,6 +528,14 @@ echo "Command: ./jc2server auto-install" (fn_autoinstall) fn_test_result_pass +echo "" +echo "Inserting IP address" +echo "=================================" +echo "Description:" +echo "Inserting Travis IP in to config." +echo "Allows monitor to work" +travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) +awk '/BindIP/ { print; print "BindIP = \"${travisip}\","; next }1' "${serverfiles}/serverfiles/config.lua" > "${serverfiles}/serverfiles/config.lua" echo "" echo "3.1 - start" From 112ff841d9cc468f236b1b8528121e870dc7c21f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 22:04:34 +0100 Subject: [PATCH 38/61] correcting directory --- 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 0f89cc22e..55896ed93 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -535,7 +535,7 @@ echo "Description:" echo "Inserting Travis IP in to config." echo "Allows monitor to work" travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -awk '/BindIP/ { print; print "BindIP = \"${travisip}\","; next }1' "${serverfiles}/serverfiles/config.lua" > "${serverfiles}/serverfiles/config.lua" +awk '/BindIP/ { print; print "BindIP = \"${travisip}\","; next }1' "${serverfiles}/config.lua" > "${serverfiles}/config.lua" echo "" echo "3.1 - start" From 3328c0a9801901431cd15de5e95e7c2217e3e729 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 22:12:59 +0100 Subject: [PATCH 39/61] moved ip insert next to monitor --- tests/tests_jc2server.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 55896ed93..9274a1f97 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -528,15 +528,6 @@ echo "Command: ./jc2server auto-install" (fn_autoinstall) fn_test_result_pass -echo "" -echo "Inserting IP address" -echo "=================================" -echo "Description:" -echo "Inserting Travis IP in to config." -echo "Allows monitor to work" -travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -awk '/BindIP/ { print; print "BindIP = \"${travisip}\","; next }1' "${serverfiles}/config.lua" > "${serverfiles}/config.lua" - echo "" echo "3.1 - start" echo "=================================" @@ -708,6 +699,15 @@ fn_setstatus (command_validate.sh) fn_test_result_pass +echo "" +echo "Inserting IP address" +echo "=================================" +echo "Description:" +echo "Inserting Travis IP in to config." +echo "Allows monitor to work" +travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) +awk '/BindIP/ { print; print "BindIP = \"${travisip}\","; next }1' "${serverfiles}/config.lua" > "${serverfiles}/config.lua" + echo "" echo "5.1 - monitor - online" echo "=================================" From 8ac209fd635ffa36e749d4a82cf69b359177faff Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 22:24:57 +0100 Subject: [PATCH 40/61] testing another method of IP insert --- 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 9274a1f97..5d33d043c 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -706,8 +706,7 @@ echo "Description:" echo "Inserting Travis IP in to config." echo "Allows monitor to work" travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -awk '/BindIP/ { print; print "BindIP = \"${travisip}\","; next }1' "${serverfiles}/config.lua" > "${serverfiles}/config.lua" - +sed -i '/BindIP/c\BindIP = \"${travisip}\",' "${serverfiles}/config.lua" echo "" echo "5.1 - monitor - online" echo "=================================" From 712d9185b875b337df1dbce8828ec043d17fa546 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 22:31:01 +0100 Subject: [PATCH 41/61] added ip address tools --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1bba50377..eb258edce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,6 +29,8 @@ addons: - lib32gcc1 - libstdc++6 - libstdc++6:i386 + - net-tools + - iproute2 script: From 0f1a70e0b20afa61062dce7d0b3c56af05b10572 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 22:38:45 +0100 Subject: [PATCH 42/61] testing if ip insert id required not added ip tools --- tests/tests_jc2server.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 5d33d043c..b57516347 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -705,8 +705,9 @@ echo "=================================" echo "Description:" echo "Inserting Travis IP in to config." echo "Allows monitor to work" -travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -sed -i '/BindIP/c\BindIP = \"${travisip}\",' "${serverfiles}/config.lua" +#travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) +#sed -i '/BindIP/c\BindIP = \"${travisip}\",' "${serverfiles}/config.lua" + echo "" echo "5.1 - monitor - online" echo "=================================" From 1918b45e080ee529418531e4924886712f8e5c1f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 23:14:20 +0100 Subject: [PATCH 43/61] ipconfig --- 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 b57516347..16360a254 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -707,7 +707,8 @@ echo "Inserting Travis IP in to config." echo "Allows monitor to work" #travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) #sed -i '/BindIP/c\BindIP = \"${travisip}\",' "${serverfiles}/config.lua" - +echo "IP: ${ip}" +ipconfig echo "" echo "5.1 - monitor - online" echo "=================================" From 67844f3525467ddeaacb72cf80875aa6533fa01c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 23:14:49 +0100 Subject: [PATCH 44/61] ifconfig --- 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 16360a254..47c042123 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -708,7 +708,7 @@ echo "Allows monitor to work" #travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) #sed -i '/BindIP/c\BindIP = \"${travisip}\",' "${serverfiles}/config.lua" echo "IP: ${ip}" -ipconfig +ifconfig echo "" echo "5.1 - monitor - online" echo "=================================" From aa4a325204804000dd3de3767f584c3e2c01584a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 23:25:03 +0100 Subject: [PATCH 45/61] eth0 --- tests/tests_jc2server.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 47c042123..7c4a39c2e 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -705,8 +705,8 @@ echo "=================================" echo "Description:" echo "Inserting Travis IP in to config." echo "Allows monitor to work" -#travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -#sed -i '/BindIP/c\BindIP = \"${travisip}\",' "${serverfiles}/config.lua" +travisip=$(ip -o -4 addr|grep eth0|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) +sed -i '/BindIP/c\BindIP = \"${travisip}\",' "${serverfiles}/config.lua" echo "IP: ${ip}" ifconfig echo "" From 70d4cd72273c0b72b2a38acbe36e993acc9a4de8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 23:33:25 +0100 Subject: [PATCH 46/61] more ip tests --- tests/tests_jc2server.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 7c4a39c2e..e50597721 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -706,9 +706,9 @@ echo "Description:" echo "Inserting Travis IP in to config." echo "Allows monitor to work" travisip=$(ip -o -4 addr|grep eth0|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -sed -i '/BindIP/c\BindIP = \"${travisip}\",' "${serverfiles}/config.lua" -echo "IP: ${ip}" -ifconfig +sed -i "/BindIP/c\BindIP = \"${travisip}\"," "${serverfiles}/config.lua" +echo "IP: ${travisip}" + echo "" echo "5.1 - monitor - online" echo "=================================" From 660a772dad55e793e22ec92072494a3d42f51bca Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 9 Oct 2017 23:41:22 +0100 Subject: [PATCH 47/61] added ip insert in second location --- tests/tests_jc2server.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index e50597721..e1ee6511b 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -744,6 +744,16 @@ fn_setstatus (command_monitor.sh) fn_test_result_fail +echo "" +echo "Inserting IP address" +echo "=================================" +echo "Description:" +echo "Inserting Travis IP in to config." +echo "Allows monitor to work" +travisip=$(ip -o -4 addr|grep eth0|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) +sed -i "/BindIP/c\BindIP = \"${travisip}\"," "${serverfiles}/config.lua" +echo "IP: ${travisip}" + echo "" echo "5.4 - monitor - gsquery.py failure" echo "=================================" From 0c84efad11702fb2867cbf3435a7d2580206a72a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 10 Oct 2017 20:00:32 +0100 Subject: [PATCH 48/61] insert ip not required here --- tests/tests_jc2server.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index e1ee6511b..36d366069 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -744,16 +744,6 @@ fn_setstatus (command_monitor.sh) fn_test_result_fail -echo "" -echo "Inserting IP address" -echo "=================================" -echo "Description:" -echo "Inserting Travis IP in to config." -echo "Allows monitor to work" -travisip=$(ip -o -4 addr|grep eth0|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -sed -i "/BindIP/c\BindIP = \"${travisip}\"," "${serverfiles}/config.lua" -echo "IP: ${travisip}" - echo "" echo "5.4 - monitor - gsquery.py failure" echo "=================================" @@ -844,8 +834,6 @@ echo "Using: ${gamename}" echo "=================================" requiredstatus="OFFLINE" fn_setstatus -sleep 1 fn_print_info "Tidying up directories." -sleep 1 rm -rfv "${serverfiles}" core_exit.sh \ No newline at end of file From 7615374b26d3a75b4d9cfaaadf6df56dcfc2a858 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 10 Oct 2017 20:08:11 +0100 Subject: [PATCH 49/61] Updated test --- tests/tests_ts3server.sh | 79 +++++++++++++++++++++++++++++----------- 1 file changed, 58 insertions(+), 21 deletions(-) diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 22403dd43..dd5b8351b 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -423,7 +423,7 @@ fn_setstatus(){ # End of every test will expect the result to either pass or fail # If the script does not do as intended the whole test will fail -# if excpecting a pass +# if expecting a pass fn_test_result_pass(){ if [ $? != 0 ]; then echo "=================================" @@ -441,7 +441,7 @@ fn_test_result_pass(){ fi } -# if excpecting a fail +# if expecting a fail fn_test_result_fail(){ if [ $? == 0 ]; then echo "=================================" @@ -528,7 +528,6 @@ echo "Command: ./ts3server auto-install" (fn_autoinstall) fn_test_result_pass - echo "" echo "3.1 - start" echo "=================================" @@ -606,29 +605,16 @@ fn_setstatus (command_restart.sh) fn_test_result_pass -echo "" echo "4.1 - update" echo "=================================" echo "Description:" echo "check for updates." -echo "Command: ./jc2server update" +echo "Command: ./ts3server update" requiredstatus="OFFLINE" fn_setstatus (command_update.sh) fn_test_result_pass -echo "" -echo "4.2 - update-functions" -echo "=================================" -echo "Description:" -echo "runs update-functions." -echo "" -echo "Command: ./jc2server update-functions" -requiredstatus="OFFLINE" -fn_setstatus -(command_update_functions.sh) -fn_test_result_pass - echo "" echo "5.1 - monitor - online" echo "=================================" @@ -640,7 +626,6 @@ fn_setstatus (command_monitor.sh) fn_test_result_pass - echo "" echo "5.2 - monitor - offline - with lockfile" echo "=================================" @@ -654,7 +639,6 @@ date > "${rootdir}/${lockselfname}" (command_monitor.sh) fn_test_result_pass - echo "" echo "5.3 - monitor - offline - no lockfile" echo "=================================" @@ -677,6 +661,61 @@ fn_setstatus (command_details.sh) fn_test_result_pass +echo "" +echo "6.1 - post details" +echo "=================================" +echo "Description:" +echo "post details." +echo "Command: ./jc2server postdetails" +requiredstatus="ONLINE" +fn_setstatus +(command_postdetails.sh) +fn_test_result_pass + +echo "" +echo "7.0 - backup" +echo "=================================" +echo "Description:" +echo "run a backup." +echo "Command: ./jc2server backup" +requiredstatus="ONLINE" +fn_setstatus +(command_backup.sh) +fn_test_result_pass + +echo "" +echo "8.0 - dev - detect glibc" +echo "=================================" +echo "Description:" +echo "detect glibc." +echo "Command: ./jc2server detect-glibc" +requiredstatus="ONLINE" +fn_setstatus +(command_dev_detect_glibc.sh) +fn_test_result_pass + +echo "" +echo "8.1 - dev - detect ldd" +echo "=================================" +echo "Description:" +echo "detect ldd." +echo "Command: ./jc2server detect-ldd" +requiredstatus="ONLINE" +fn_setstatus +(command_dev_detect_ldd.sh) +fn_test_result_pass + +echo "" +echo "8.2 - dev - detect deps" +echo "=================================" +echo "Description:" +echo "detect dependencies." +echo "Command: ./jc2server detect-deps" +requiredstatus="ONLINE" +fn_setstatus +(command_dev_detect_deps.sh) +fn_test_result_pass + echo "" echo "=================================" echo "Server Tests - Complete!" @@ -684,8 +723,6 @@ echo "Using: ${gamename}" echo "=================================" requiredstatus="OFFLINE" fn_setstatus -sleep 1 fn_print_info "Tidying up directories." -sleep 1 rm -rfv "${serverfiles}" core_exit.sh \ No newline at end of file From 8ff4d3b16ea7fb8ad35b9e46a0a8287654f29b84 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 11 Oct 2017 21:54:52 +0100 Subject: [PATCH 50/61] missing " --- lgsm/functions/command_dev_detect_ldd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_dev_detect_ldd.sh b/lgsm/functions/command_dev_detect_ldd.sh index 3bdc2fc36..668ca0377 100644 --- a/lgsm/functions/command_dev_detect_ldd.sh +++ b/lgsm/functions/command_dev_detect_ldd.sh @@ -32,7 +32,7 @@ while IFS= read -r -d $'\0' line; do if [ -n "$(ldd $line 2>/dev/null |grep -v "not a dynamic executable"|grep "not found")" ]; then echo "${line}" >> "${tmpdir}/detect_ldd_not_found.tmp" - ldd "${line} 2>/dev/null |grep -v "not a dynamic executable"|grep "not found" >> "${tmpdir}/detect_ldd_not_found.tmp" + ldd "${line}" 2>/dev/null |grep -v "not a dynamic executable"|grep "not found" >> "${tmpdir}/detect_ldd_not_found.tmp" fi fi echo -n "$i / $files" $'\r' From fb40a5ca00003bd8a67f18ceebf5ae79dfe085ca Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 11 Oct 2017 22:02:46 +0100 Subject: [PATCH 51/61] added starbound engine --- lgsm/functions/command_monitor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index d940bea70..fa4df8e0b 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -79,7 +79,7 @@ fn_monitor_tmux(){ fn_print_ok_eol_nl fn_script_log_pass "Checking session: OK" # runs gsquery check on game with specific engines. - local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql iw2.0 iw3.0 madness quake refractor realvirtuality source spark unity3d unreal unreal2 ) + local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql iw2.0 iw3.0 madness quake refractor realvirtuality source spark starbound unity3d unreal unreal2 ) for allowed_engine in "${allowed_engines_array[@]}" do if [ "${allowed_engine}" == "${engine}" ]; then From a758192c978a42b57a94d6975b98e22981dd62f2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Oct 2017 19:38:02 +0100 Subject: [PATCH 52/61] stray $ --- lgsm/functions/check_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 6ac52ded3..821f81b09 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -19,7 +19,7 @@ fn_deps_detector(){ deptocheck="${javaversion}" unset javacheck elif [ -n "$(command -v apt-get 2>/dev/null)" ]; then - dpkg-query -W -f='${Status}' ${deptocheck} 2>/dev/null | grep -q -P '^install ok installed$' + dpkg-query -W -f='${Status}' ${deptocheck} 2>/dev/null | grep -q -P '^install ok installed' depstatus=$? elif [ -n "$(command -v yum 2>/dev/null)" ]; then yum -q list installed ${deptocheck} > /dev/null 2>&1 From 885d5a70871ce2f35136de39cd3e4132ac99761d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Oct 2017 19:43:15 +0100 Subject: [PATCH 53/61] added zlib as requirement for Hurtworld and Rust --- lgsm/functions/check_deps.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 821f81b09..4ea2295bc 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -195,6 +195,9 @@ if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then # Factorio elif [ "${gamename}" == "Factorio" ]; then array_deps_required+=( xz-utils ) + # Hurtword/Rust + elif [ "${gamename}" == "Hurtword" ]||[ "${gamename}" == "Rust" ]; then + array_deps_required+=( lib32z1 ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then javaversion=$(java -version 2>&1 | grep "version") @@ -276,6 +279,8 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # Factorio elif [ "${gamename}" == "Factorio" ]; then array_deps_required+=( xz ) + elif [ "${gamename}" == "Hurtword" ]||[ "${gamename}" == "Rust" ]; then + array_deps_required+=( zlib-devel ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then javaversion=$(java -version 2>&1 | grep "version") From ca462e3baead7e293b0ec4e295b24ac42fb75634 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Oct 2017 20:37:46 +0100 Subject: [PATCH 54/61] Added Starbound query --- lgsm/functions/command_monitor.sh | 9 +++++++-- lgsm/functions/gsquery.py | 2 +- lgsm/functions/info_config.sh | 2 ++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index d940bea70..08be4936a 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -79,10 +79,15 @@ fn_monitor_tmux(){ fn_print_ok_eol_nl fn_script_log_pass "Checking session: OK" # runs gsquery check on game with specific engines. - local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql iw2.0 iw3.0 madness quake refractor realvirtuality source spark unity3d unreal unreal2 ) + local allowed_engines_array=( avalanche goldsource idtech3 idtech3_ql iw2.0 iw3.0 madness quake refractor realvirtuality source spark starbound unity3d unreal unreal2 ) for allowed_engine in "${allowed_engines_array[@]}" do - if [ "${allowed_engine}" == "${engine}" ]; then + if [ "${allowed_engine}" == "starbound" ]; then + info_config.sh + if [ "${rconenabled}" == "true" ]; then + monitor_gsquery.sh + fi + elif [ "${allowed_engine}" == "${engine}" ]; then monitor_gsquery.sh fi done diff --git a/lgsm/functions/gsquery.py b/lgsm/functions/gsquery.py index 40e6c2950..c0192b6e1 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -17,7 +17,7 @@ class PythonGSQ: self.server_response_timeout = 5 self.default_buffer_length = 1024 # - sourcequery=['madness','quakelive','realvirtuality','refractor','source','goldsource','spark','unity3d'] + sourcequery=['madness','quakelive','realvirtuality','refractor','source','goldsource','spark','starbound','unity3d'] idtech2query=['idtech3','quake','iw3.0'] idtech3query=['idtech2','iw2.0'] if self.option.engine in sourcequery: diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index da6b0a6f4..e54cd60a2 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -455,6 +455,7 @@ fn_info_config_source(){ fn_info_config_starbound(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" + rconenabled="${unavailable}" rconpassword="${unavailable}" port="21025" queryport="21025" @@ -462,6 +463,7 @@ fn_info_config_starbound(){ maxplayers="8" else servername=$(grep "serverName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/serverName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconenabled=$(grep "runQueryServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runQueryServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') rconpassword=$(grep "rconServerPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/rconServerPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') port=$(grep "gameServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') queryport=$(grep "queryServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') From 88e20faa8fc362a45d1fcdfa17f649d7a09ae8d4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Oct 2017 22:40:38 +0100 Subject: [PATCH 55/61] improvements to tmux version detection https://github.com/GameServerManagers/LinuxGSM/pull/1378#issuecomment-287954517 --- lgsm/functions/command_start.sh | 63 +++++++++++++++++++++------------ 1 file changed, 40 insertions(+), 23 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index fec2dd946..a2e9325f0 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -100,30 +100,47 @@ fn_start_tmux(){ cd "${executabledir}" tmux new-session -d -x "${sessionheight}" -y "${sessionwidth}" -s "${servicename}" "${executable} ${parms}" 2> "${lgsmlogdir}/.${servicename}-tmux-error.tmp" - # tmux pipe-pane not supported in tmux versions < 1.6 - if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ] 2>/dev/null; then # Tmux compiled from source will not return a number, therefore bypass this check and trash the error - echo "Console logging disabled: Tmux => 1.6 required - https://gameservermanagers.com/tmux-upgrade - Currently installed: $(tmux -V)" > "${consolelog}" - - # Console logging disabled: Bug in tmux 1.8 breaks logging - elif [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -eq "18" ] 2>/dev/null; then - echo "Console logging disabled: Bug in tmux 1.8 breaks logging - https://gameservermanagers.com/tmux-upgrade - Currently installed: $(tmux -V)" > "${consolelog}" - - # Console logging enable or not set - elif [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then - touch "${consolelog}" - tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'" - - # Console logging disabled - elif [ "${consolelogging}" == "off" ]; then - touch "${consolelog}" - cat "Console logging disabled by user" >> "{consolelog}" - fn_script_log_info "Console logging disabled by user" + # Create logfile + touch "${consolelog}" + + # Get tmux version + tmuxversion="$(tmux -V|sed "s/tmux //"|sed -n '1 p')" + # Tmux compiled from source will return "master", therefore ignore it + if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p')" == "master" ]; then + fn_script_log "Tmux version: master (user compiled)" + echo "Tmux version: master (user compiled)" >> "${consolelog}" + if [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then + tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'" + fi + elif [ -n "${tmuxversion}" ]; then + # Get the digit version of tmux + tmuxversion="$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" + # tmux pipe-pane not supported in tmux versions < 1.6 + if [ "${tmuxversion}" -lt "16" ]; then + echo "Console logging disabled: Tmux => 1.6 required + https://gameservermanagers.com/tmux-upgrade + Currently installed: $(tmux -V)" > "${consolelog}" + + # Console logging disabled: Bug in tmux 1.8 breaks logging + elif [ "${tmuxversion}" -eq "18" ]; then + echo "Console logging disabled: Bug in tmux 1.8 breaks logging + https://gameservermanagers.com/tmux-upgrade + Currently installed: $(tmux -V)" > "${consolelog}" + # Console logging enable or not set + elif [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then + tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'" + fi + else + echo "Unable to detect tmux version" >> "${consolelog}" + fn_script_log_warn "Unable to detect tmux version" fi - sleep 1 + +# Console logging disabled +if [ "${consolelogging}" == "off" ]; then + echo "Console logging disabled by user" >> "${consolelog}" + fn_script_log_info "Console logging disabled by user" +fi +sleep 1 # If the server fails to start check_status.sh From eb7d8907b61c380397bd3978a4892b0a4aaef734 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Oct 2017 22:52:47 +0100 Subject: [PATCH 56/61] Fixing issue #1425 --- lgsm/functions/logs.sh | 2 +- lgsm/functions/update_steamcmd.sh | 2 +- linuxgsm.sh | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index 7d7dbcebe..927185ecf 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -67,7 +67,7 @@ if [ $(find "${lgsmlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; then smcount=$(find "${commonlogs}"/ -type f -mtime +"${logdays}"|wc -l) find "${commonlogs}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; fi - if [ -d ${commonsourcelogs} ]; then + if [ -d "${commonsourcelogs}" ]; then find "${commonsourcelogs}"/* -type f -mtime +"${logdays}"| tee >> "${lgsmlog}" smcount=$(find "${commonsourcelogs}"/* -type f -mtime +"${logdays}"|wc -l) find "${commonsourcelogs}"/* -mtime +"${logdays}" -type f -exec rm -f {} \; diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index ff9cd8672..c2c9fb608 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -102,7 +102,7 @@ fn_update_request_log(){ fn_print_dots "Checking for update: Server logs" fn_script_log_info "Checking for update: Server logs" sleep 1 - if [ -f ${consolelog} ]; then + if [ -f "${consolelog}" ]; then requestrestart=$(grep -Ec "MasterRequestRestart" "${consolelog}") else requestrestart="0" diff --git a/linuxgsm.sh b/linuxgsm.sh index da94afcde..7b5529854 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -23,8 +23,8 @@ fi version="170926" shortname="core" gameservername="core" -rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" -selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" +selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" servicename="${selfname}" lockselfname=".${servicename}.lock" lgsmdir="${rootdir}/lgsm" @@ -337,7 +337,7 @@ else echo -e "\e[0;32mOK\e[0m" fi else - function_file_diff=$(diff -q ${configdirdefault}/config-lgsm/${gameservername}/_default.cfg ${configdirserver}/_default.cfg) + function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") if [ "${function_file_diff}" != "" ]; then fn_print_warn_nl "_default.cfg has been altered. reloading config." echo -ne " copying _default.cfg...\c" From fdbc6fc73c0ecf09a18af6878e9e51c28123e95a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Oct 2017 23:09:48 +0100 Subject: [PATCH 57/61] updated function_selfname to help with issue #1425 --- lgsm/functions/alert_email.sh | 2 +- lgsm/functions/alert_ifttt.sh | 2 +- lgsm/functions/alert_mailgun.sh | 2 +- lgsm/functions/alert_pushbullet.sh | 2 +- lgsm/functions/alert_pushover.sh | 2 +- lgsm/functions/alert_telegram.sh | 2 +- lgsm/functions/check_config.sh | 2 +- lgsm/functions/check_executable.sh | 2 +- lgsm/functions/check_ip.sh | 2 +- lgsm/functions/check_logs.sh | 2 +- lgsm/functions/check_root.sh | 2 +- lgsm/functions/check_status.sh | 2 +- lgsm/functions/check_system_dir.sh | 2 +- lgsm/functions/check_system_requirements.sh | 2 +- lgsm/functions/command_backup.sh | 2 +- lgsm/functions/command_console.sh | 2 +- lgsm/functions/command_debug.sh | 2 +- lgsm/functions/command_details.sh | 2 +- lgsm/functions/command_dev_debug.sh | 2 +- lgsm/functions/command_dev_detect_deps.sh | 2 +- lgsm/functions/command_fastdl.sh | 2 +- lgsm/functions/command_install.sh | 2 +- lgsm/functions/command_install_resources_mta.sh | 2 +- lgsm/functions/command_mods_install.sh | 2 +- lgsm/functions/command_mods_remove.sh | 2 +- lgsm/functions/command_mods_update.sh | 2 +- lgsm/functions/command_monitor.sh | 2 +- lgsm/functions/command_postdetails.sh | 2 +- lgsm/functions/command_restart.sh | 2 +- lgsm/functions/command_start.sh | 2 +- lgsm/functions/command_stop.sh | 2 +- lgsm/functions/command_test_alert.sh | 2 +- lgsm/functions/command_ts3_server_pass.sh | 2 +- lgsm/functions/command_update.sh | 2 +- lgsm/functions/command_update_linuxgsm.sh | 2 +- lgsm/functions/command_validate.sh | 2 +- lgsm/functions/command_wipe.sh | 2 +- lgsm/functions/compress_unreal2_maps.sh | 2 +- lgsm/functions/compress_ut99_maps.sh | 2 +- lgsm/functions/core_dl.sh | 2 +- lgsm/functions/core_getopt.sh | 2 +- lgsm/functions/fix_arma3.sh | 2 +- lgsm/functions/fix_csgo.sh | 2 +- lgsm/functions/fix_dst.sh | 2 +- lgsm/functions/fix_glibc.sh | 2 +- lgsm/functions/fix_kf.sh | 2 +- lgsm/functions/fix_kf2.sh | 2 +- lgsm/functions/fix_mta.sh | 2 +- lgsm/functions/fix_ro.sh | 2 +- lgsm/functions/fix_steamcmd.sh | 2 +- lgsm/functions/fix_ut.sh | 2 +- lgsm/functions/fix_ut2k4.sh | 2 +- lgsm/functions/info_config.sh | 2 +- lgsm/functions/info_distro.sh | 2 +- lgsm/functions/info_glibc.sh | 2 +- lgsm/functions/info_parms.sh | 2 +- lgsm/functions/install_complete.sh | 2 +- lgsm/functions/install_config.sh | 2 +- lgsm/functions/install_dst_token.sh | 2 +- lgsm/functions/install_gslt.sh | 2 +- lgsm/functions/install_header.sh | 2 +- lgsm/functions/install_logs.sh | 2 +- lgsm/functions/install_mta_resources.sh | 2 +- lgsm/functions/install_retry.sh | 2 +- lgsm/functions/install_server_dir.sh | 2 +- lgsm/functions/install_server_files.sh | 2 +- lgsm/functions/install_squad_license.sh | 2 +- lgsm/functions/install_ts3db.sh | 2 +- lgsm/functions/install_ut2k4_key.sh | 2 +- lgsm/functions/mods_core.sh | 2 +- lgsm/functions/mods_list.sh | 2 +- lgsm/functions/monitor_gsquery.sh | 2 +- lgsm/functions/update_factorio.sh | 2 +- lgsm/functions/update_minecraft.sh | 2 +- lgsm/functions/update_mta.sh | 2 +- lgsm/functions/update_mumble.sh | 2 +- lgsm/functions/update_steamcmd.sh | 2 +- lgsm/functions/update_ts3.sh | 2 +- 78 files changed, 78 insertions(+), 78 deletions(-) diff --git a/lgsm/functions/alert_email.sh b/lgsm/functions/alert_email.sh index 7057ebf93..73704b5ab 100644 --- a/lgsm/functions/alert_email.sh +++ b/lgsm/functions/alert_email.sh @@ -6,7 +6,7 @@ local commandname="ALERT" local commandaction="Alert" -local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_print_dots "Sending Email alert: ${email}" sleep 0.5 diff --git a/lgsm/functions/alert_ifttt.sh b/lgsm/functions/alert_ifttt.sh index f3f6a9cf6..8aa253ada 100644 --- a/lgsm/functions/alert_ifttt.sh +++ b/lgsm/functions/alert_ifttt.sh @@ -6,7 +6,7 @@ local commandname="ALERT" local commandaction="Alert" -local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" json=$(cat < Date: Fri, 13 Oct 2017 16:20:28 +0100 Subject: [PATCH 58/61] Added rcon and query enabled to details --- lgsm/functions/command_monitor.sh | 2 +- lgsm/functions/info_config.sh | 4 +++- lgsm/functions/info_messages.sh | 10 ++++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index fe5ee246d..ec94e0426 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -84,7 +84,7 @@ fn_monitor_tmux(){ do if [ "${allowed_engine}" == "starbound" ]; then info_config.sh - if [ "${rconenabled}" == "true" ]; then + if [ "${queryenabled}" == "true" ]; then monitor_gsquery.sh fi elif [ "${allowed_engine}" == "${engine}" ]; then diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 5a51b7b08..ebe0d8d41 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -455,6 +455,7 @@ fn_info_config_source(){ fn_info_config_starbound(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" + queryenabled="${unavailable}" rconenabled="${unavailable}" rconpassword="${unavailable}" port="21025" @@ -463,7 +464,8 @@ fn_info_config_starbound(){ maxplayers="8" else servername=$(grep "serverName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/serverName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - rconenabled=$(grep "runQueryServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runQueryServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + queryenabled=$(grep "runQueryServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runQueryServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconenabled=$(grep "runRconServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runRconServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') rconpassword=$(grep "rconServerPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/rconServerPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') port=$(grep "gameServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') queryport=$(grep "queryServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 78f1db000..5cf46a89a 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -146,6 +146,16 @@ fn_info_message_gameserver(){ echo -e "${blue}Server password:\t${default}${serverpassword}" fi + # Query enabled (Starbound) + if [ -n "${queryenabled}" ]; then + echo -e "${blue}Query enabled:\t${default}${rconpassword}" + fi + + # RCON enabled (Starbound) + if [ -n "${rconenabled}" ]; then + echo -e "${blue}RCON enabled:\t${default}${rconpassword}" + fi + # RCON password if [ -n "${rconpassword}" ]; then echo -e "${blue}RCON password:\t${default}${rconpassword}" From 3898d4f33e3e0f287825c4c2d598e0df6dca891b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 14 Oct 2017 14:14:50 +0100 Subject: [PATCH 59/61] updated dirname for dirs with space --- lgsm/functions/command_dev_detect_glibc.sh | 2 +- lgsm/functions/command_dev_detect_ldd.sh | 2 +- tests/tests_jc2server.sh | 4 ++-- tests/tests_ts3server.sh | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_dev_detect_glibc.sh b/lgsm/functions/command_dev_detect_glibc.sh index bfb7a80cf..4fb472a94 100644 --- a/lgsm/functions/command_dev_detect_glibc.sh +++ b/lgsm/functions/command_dev_detect_glibc.sh @@ -16,7 +16,7 @@ if [ -z "$(command -v objdump)" ]; then fi if [ -z "${serverfiles}" ]; then - dir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" + dir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" fi if [ -d "${serverfiles}" ]; then diff --git a/lgsm/functions/command_dev_detect_ldd.sh b/lgsm/functions/command_dev_detect_ldd.sh index 668ca0377..d80ad0895 100644 --- a/lgsm/functions/command_dev_detect_ldd.sh +++ b/lgsm/functions/command_dev_detect_ldd.sh @@ -10,7 +10,7 @@ echo "Shared Object dependencies Checker" echo "=================================" if [ -z "${serverfiles}" ]; then - dir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" + dir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" fi if [ -d "${serverfiles}" ]; then diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 36d366069..c0d6d0b19 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -16,10 +16,10 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170619" +version="171014" shortname="jc2" gameservername="jc2server" -rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" servicename="${selfname}" lockselfname=".${servicename}.lock" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index dd5b8351b..7f327dc13 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -16,10 +16,10 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170619" +version="171014" shortname="ts3" gameservername="ts3server" -rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" servicename="${selfname}" lockselfname=".${servicename}.lock" From 3fbc117597f526c0041e7dd94ec03085be8f9f44 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 14 Oct 2017 14:15:13 +0100 Subject: [PATCH 60/61] Release 171014 --- linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linuxgsm.sh b/linuxgsm.sh index 7b5529854..9dbc97b6a 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170926" +version="171014" shortname="core" gameservername="core" rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" From 569794599a9a52cc465c236a4ef30ea92183395d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 14 Oct 2017 14:19:46 +0100 Subject: [PATCH 61/61] added missing query/rcon enabled not set --- 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 ebe0d8d41..5127ffa4f 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -474,6 +474,8 @@ fn_info_config_starbound(){ # Not Set servername=${servername:-"NOT SET"} + queryenabled=${queryenabled:-"NOT SET"} + rconenabled==${rconenabled:-"NOT SET"} rconpassword=${rconpassword:-"NOT SET"} port=${port:-"21025"} queryport=${queryport:-"21025"}