From 570002cfcef9a7dfde3a72a69ede759951a6bea8 Mon Sep 17 00:00:00 2001 From: cedarlug Date: Tue, 24 May 2016 15:05:05 -0500 Subject: [PATCH 1/6] Dang type-o --- 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 d7b9ddd33..13236d0ae 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -173,7 +173,7 @@ fn_stop_ark(){ fi if [[ ${#queryport} -gt 0 ]] ; then - for (( pidcheck=0 ; pidcheck < ${MADPIDITER} ; pidcheck++ )) ; do + for (( pidcheck=0 ; pidcheck < ${MAXPIDITER} ; pidcheck++ )) ; do pid=$(netstat -nap 2>/dev/null | grep ^udp[[:space:]] |\ grep :${queryport}[[:space:]] | rev | awk '{print $1}' |\ rev | cut -d\/ -f1) From 552554627cf170fdc5856f73c6144841f29f2490 Mon Sep 17 00:00:00 2001 From: cedarlug Date: Tue, 24 May 2016 15:14:11 -0500 Subject: [PATCH 2/6] testing stdbuf as an unbuffer replacement --- lgsm/functions/command_validate.sh | 4 +++- lgsm/functions/install_server_files.sh | 6 ++++-- lgsm/functions/update_dl.sh | 4 +++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 10e3bfa5d..6c852aeb6 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -22,7 +22,9 @@ fn_validation(){ cd "${rootdir}/steamcmd" - if [ $(command -v unbuffer) ]; then + if [ $(command -v stdbuf) ]; then + unbuffer="stdbuf -i0 -o0 -e0" + elif [ $(command -v unbuffer) ]; then unbuffer=unbuffer fi diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index cf31e355c..1a852bd7b 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -43,7 +43,9 @@ fn_install_server_files_steamcmd(){ fi # Detects if unbuffer command is available. - if [ $(command -v unbuffer) ]; then + if [ $(command -v stdbuf) ]; then + unbuffer="stdbuf -i0 -o0 -e0" + elif [ $(command -v unbuffer) ]; then unbuffer=unbuffer fi @@ -107,4 +109,4 @@ if [ -z "${autoinstall}" ]; then * ) echo "Please answer yes or no.";; esac done -fi \ No newline at end of file +fi diff --git a/lgsm/functions/update_dl.sh b/lgsm/functions/update_dl.sh index 1ccd3e8d5..d055bba58 100644 --- a/lgsm/functions/update_dl.sh +++ b/lgsm/functions/update_dl.sh @@ -14,7 +14,9 @@ fn_steamcmd_dl(){ cd "steamcmd" # Detects if unbuffer command is available. - if [ $(command -v unbuffer) ]; then + if [ $(command -v stdbuf) ]; then + unbuffer="stdbuf -i0 -o0 -e0" + elif [ $(command -v unbuffer) ]; then unbuffer=unbuffer fi From be315b3b3d19065f9e4d210344055c04944876f7 Mon Sep 17 00:00:00 2001 From: cedarlug Date: Tue, 24 May 2016 16:10:45 -0500 Subject: [PATCH 3/6] Use unbuffer if present first, then try stdbuf --- lgsm/functions/command_validate.sh | 6 +++--- lgsm/functions/install_server_files.sh | 6 +++--- lgsm/functions/update_dl.sh | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 6c852aeb6..71433a7b6 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -22,10 +22,10 @@ fn_validation(){ cd "${rootdir}/steamcmd" - if [ $(command -v stdbuf) ]; then - unbuffer="stdbuf -i0 -o0 -e0" - elif [ $(command -v unbuffer) ]; then + if [ $(command -v unbuffer) ]; then unbuffer=unbuffer + elif [ $(command -v stdbuf) ]; then + unbuffer="stdbuf -i0 -o0 -e0" fi if [ "${engine}" == "goldsource" ]; then diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 1a852bd7b..ffe0284a3 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -43,10 +43,10 @@ fn_install_server_files_steamcmd(){ fi # Detects if unbuffer command is available. - if [ $(command -v stdbuf) ]; then - unbuffer="stdbuf -i0 -o0 -e0" - elif [ $(command -v unbuffer) ]; then + if [ $(command -v unbuffer) ]; then unbuffer=unbuffer + elif [ $(command -v stdbuf) ]; then + unbuffer="stdbuf -i0 -o0 -e0" fi if [ "${counter}" -le "4" ]; then diff --git a/lgsm/functions/update_dl.sh b/lgsm/functions/update_dl.sh index d055bba58..5a40c802f 100644 --- a/lgsm/functions/update_dl.sh +++ b/lgsm/functions/update_dl.sh @@ -14,10 +14,10 @@ fn_steamcmd_dl(){ cd "steamcmd" # Detects if unbuffer command is available. + if [ $(command -v unbuffer) ]; then + unbuffer=unbuffer if [ $(command -v stdbuf) ]; then unbuffer="stdbuf -i0 -o0 -e0" - elif [ $(command -v unbuffer) ]; then - unbuffer=unbuffer fi if [ "${engine}" == "goldsource" ]; then From 6fd13b734db56c30f882e51c5a638ea88717e717 Mon Sep 17 00:00:00 2001 From: cedarlug Date: Tue, 24 May 2016 16:12:59 -0500 Subject: [PATCH 4/6] elif not if --- lgsm/functions/update_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_dl.sh b/lgsm/functions/update_dl.sh index 5a40c802f..466e06d7c 100644 --- a/lgsm/functions/update_dl.sh +++ b/lgsm/functions/update_dl.sh @@ -16,7 +16,7 @@ fn_steamcmd_dl(){ # Detects if unbuffer command is available. if [ $(command -v unbuffer) ]; then unbuffer=unbuffer - if [ $(command -v stdbuf) ]; then + elif [ $(command -v stdbuf) ]; then unbuffer="stdbuf -i0 -o0 -e0" fi From 0ace80d00a63402cd366f35b65cd1eb782c550cf Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 27 May 2016 21:22:56 +0100 Subject: [PATCH 5/6] Added GES file --- lgsm/functions/install_server_files.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 4b48f0a66..4b383a31f 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -2,7 +2,7 @@ # LGSM install_server_files.sh function # Author: Daniel Gibbs # Website: https://gameservermanagers.com -lgsm_version="210516" +lgsm_version="270516" local modulename="Install" @@ -11,6 +11,8 @@ fn_install_server_files(){ fileurl="https://gameservermanagers.com/files/UnrealTournament99/ut99-server-451-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut99-server-451-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="49cb24d0550ff6ddeaba6007045c6edd" elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fileurl="https://gameservermanagers.com/files/UnrealTournament2004/ut2004-server-3339-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut2004-server-3339-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="67c5e2cd9c2a4b04f163962ee41eff54" + elif [ "${gamename}" == "GoldenEye: Source" ]; then + fileurl="https://gameservermanagers.com/files/GoldenEyeSource/goldenEye_source_v4.2.4_server_2015_map_pack.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="goldenEye_source_v4.2.4_server_2015_map_pack.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="3148ac38acc3642b0d6d64f51f27de15" fi fn_fetch_file "${fileurl}" "${filedir}" "${filename}" "${executecmd}" "${run}" "${force}" "${md5}" fn_dl_extract "${filedir}" "${filename}" "${filesdir}" From 100e065b4dc3bec9d90524312692a29452883ec0 Mon Sep 17 00:00:00 2001 From: cedarlug Date: Thu, 9 Jun 2016 18:58:58 -0500 Subject: [PATCH 6/6] Adding unreal4 option for Ark in command_details; Integrating yadutaf\'s startup parms --- ARKSurvivalEvolved/arkserver | 10 ++++++++-- lgsm/functions/command_details.sh | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index 719cbe50a..c842f5318 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -20,7 +20,7 @@ version="210516" emailalert="off" email="email@example.com" -# Pushbullet +# Pushbullet # https://www.pushbullet.com/#settings pushbulletalert="off" pushbullettoken="accesstoken" @@ -30,11 +30,17 @@ steamuser="anonymous" steampass="" # Start Variables +servername="ark-server" +port="7778" +queryport="27015" +rconport="32330" +rconpassword="" # Set to enable rcon +maxplayers="50" ip="0.0.0.0" updateonstart="off" fn_parms(){ -parms="TheIsland?listen" + parms="TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?ServerAdminPassword=${rconpassword}" } #### Advanced Variables #### diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index f15380490..a64247696 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -288,7 +288,7 @@ fn_details_ports(){ fi done - local ports_edit_array=( "starbound" "spark" "source" "goldsource" "Rust" "Hurtworld" ) + local ports_edit_array=( "starbound" "spark" "source" "goldsource" "Rust" "Hurtworld" "unreal4") for port_edit in "${ports_edit_array[@]}" do if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then @@ -608,4 +608,4 @@ else fn_print_error_nl "Unable to detect server engine." fi -fn_details_statusbottom \ No newline at end of file +fn_details_statusbottom