From 2d97072581cda11a5ae2cdd599d3fda77ca2f068 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:27:28 +0100 Subject: [PATCH 01/17] Revert single quote on ${steampass} --- lgsm/functions/check_steamcmd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index 79c016b58..20a36afea 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -58,7 +58,7 @@ fn_check_steamcmd_sh(){ fn_check_steamcmd_guard(){ if [ "${function_selfname}" == "command_update.sh" ]||[ "${function_selfname}" == "command_validate.sh" ]; then # Checks that SteamCMD is working correctly and will prompt Steam Guard if required. - "${steamcmddir}"/steamcmd.sh +login "${steamuser}" '${steampass}' +quit + "${steamcmddir}"/steamcmd.sh +login "${steamuser}" "${steampass}" +quit if [ $? -ne 0 ]; then fn_print_failure_nl "Error running SteamCMD" fi From da6b5087b7e80be45c942e64e711b03c7ba00ee3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:27:50 +0100 Subject: [PATCH 02/17] Revert single quote on ${steampass} --- lgsm/functions/command_validate.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 8b55aaae9..6125ed513 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -24,9 +24,9 @@ fn_validation(){ fi if [ "${engine}" == "goldsource" ]; then - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" ${branch} +app_update "${appid}" ${branch} validate +quit| tee -a "${scriptlog}" + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" ${branch} +app_update "${appid}" ${branch} validate +quit| tee -a "${scriptlog}" else - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} validate +quit| tee -a "${scriptlog}" + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} validate +quit| tee -a "${scriptlog}" fi if [ $? != 0 ]; then fn_print_fail_nl "Validating files: SteamCMD" @@ -54,4 +54,4 @@ if [ "${status}" != "0" ]; then else fn_validation fi -core_exit.sh \ No newline at end of file +core_exit.sh From 683fe847f75972a0ac452c31b28e574e0b8f9f0e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:28:36 +0100 Subject: [PATCH 03/17] Revert single quote on ${steampass} --- lgsm/functions/install_server_files.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 896347388..792cb5e49 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -78,18 +78,18 @@ fn_install_server_files_steamcmd(){ if [ "${counter}" -le "4" ]; then if [ "${engine}" == "goldsource" ]; then - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_set_config 90 mod "${appidmod}" +app_update "${appid}" ${branch} +quit + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_set_config 90 mod "${appidmod}" +app_update "${appid}" ${branch} +quit local exitcode=$? else - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} +quit + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} +quit local exitcode=$? fi elif [ "${counter}" -ge "5" ]; then if [ "${engine}" == "goldsource" ]; then - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_set_config 90 mod "${appidmod}" +app_update "${appid}" ${branch} -validate +quit + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_set_config 90 mod "${appidmod}" +app_update "${appid}" ${branch} -validate +quit local exitcode=$? else - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} -validate +quit + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} -validate +quit local exitcode=$? fi fi @@ -107,7 +107,7 @@ fn_install_server_files_steamcmd(){ counter="0" while [ "${counter}" -le "4" ]; do counter=$((counter+1)) - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" ${branch} -validate +quit + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" ${branch} -validate +quit local exitcode=$? done fi From 7ab3eadc0ddae4f4a63b08643ba900c7730f36e9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:30:35 +0100 Subject: [PATCH 04/17] Revert single quote on ${steampass} --- lgsm/functions/update_steamcmd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index d2808974c..167daf5fb 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -26,9 +26,9 @@ fn_update_steamcmd_dl(){ fi if [ "${engine}" == "goldsource" ]; then - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" ${branch} +quit | tee -a "${scriptlog}" + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" ${branch} +quit | tee -a "${scriptlog}" else - ${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} +quit | tee -a "${scriptlog}" + ${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} +quit | tee -a "${scriptlog}" fi fix.sh @@ -156,7 +156,7 @@ fn_update_steamcmd_check(){ fi # Gets availablebuild info - availablebuild=$(./steamcmd.sh +login "${steamuser}" '${steampass}' +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"${branchname}\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) + availablebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"${branchname}\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) if [ -z "${availablebuild}" ]; then fn_print_fail "Checking for update: SteamCMD" sleep 1 From 46bce6bc5be6adc7338fe610d7ae98f43a429c80 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:32:33 +0100 Subject: [PATCH 05/17] single quote password --- 7DaysToDie/sdtdserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 4839083c0..36bfbed5d 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" From aef9c2d3891477d9f0132869975d3cffcedb8877 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:32:55 +0100 Subject: [PATCH 06/17] single quote password --- Arma3/arma3server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Arma3/arma3server b/Arma3/arma3server index 357253709..8898beb93 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" From a51bcf0b8445ceea80ed39a7819c7cf5b5ba6f15 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:33:06 +0100 Subject: [PATCH 07/17] single quote password --- BladeSymphony/bsserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index e0ea10bca..0bac17035 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="duel_winter" From 64a5777bee1be6e489320f08ef0d22d73466ceab Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:35:03 +0100 Subject: [PATCH 08/17] single quote password --- BrainBread2/bb2server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BrainBread2/bb2server b/BrainBread2/bb2server index 540d50873..50e46bf72 100644 --- a/BrainBread2/bb2server +++ b/BrainBread2/bb2server @@ -23,7 +23,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login # Steam login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="bba_barracks" From 594a636ace1d9f498ce8cbc8dbf8a640371482a5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:35:04 +0100 Subject: [PATCH 09/17] single quote password --- KillingFloor/kfserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 3227bdd58..e42dd92a1 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="KF-BioticsLab.rom" @@ -203,4 +203,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 447bf80a9c7c8cbc8d86dac652b461d13216b8dd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:35:06 +0100 Subject: [PATCH 10/17] single quote password --- NaturalSelection2/ns2server | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index d81b3b5a3..c662ecbd5 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="ns2_summit" @@ -208,4 +208,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 9a2cc8d8bfcc21db903242ee00e0e5ae905d40ef Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:35:09 +0100 Subject: [PATCH 11/17] single quote password --- NS2Combat/ns2cserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index ccb7de1be..b5fcd7b8f 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="co_core" @@ -208,4 +208,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 461021560999715dbcde9aaed3cf22b60a936275 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:35:11 +0100 Subject: [PATCH 12/17] single quote password --- RedOrchestra/roserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 3506d0285..8170bb53d 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters defaultmap="RO-Arad.rom" @@ -205,4 +205,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From c1308b55b04983a8bf0c2d5cb473a7f9bbadc330 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:35:13 +0100 Subject: [PATCH 13/17] single quote password --- Starbound/sbserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Starbound/sbserver b/Starbound/sbserver index 732a1d9c0..e6b37dc71 100644 --- a/Starbound/sbserver +++ b/Starbound/sbserver @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" @@ -197,4 +197,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 0310b3d00942570bc6af805ea4228c446a875f03 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:35:15 +0100 Subject: [PATCH 14/17] single quote password --- Teeworlds/twserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 4dab7b02b..4a9684003 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" @@ -198,4 +198,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 994eda68e6382ef9e60af0cb8f7ac21cf2d7e589 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 12 Jan 2017 22:35:17 +0100 Subject: [PATCH 15/17] single quote password --- Terraria/terrariaserver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index c86a93734..a55c57286 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -24,7 +24,7 @@ version="170110" ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login steamuser="username" -steampass="password" +steampass='password' ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0" @@ -197,4 +197,4 @@ fi core_dl.sh core_functions.sh getopt=$1 -core_getopt.sh \ No newline at end of file +core_getopt.sh From 95942d7e51e94edb69b4bb632bd30a77fcfa9356 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Jan 2017 21:47:53 +0000 Subject: [PATCH 16/17] changed quotes --- lgsm/functions/check_steamcmd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index 20a36afea..25b73a70b 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -31,7 +31,7 @@ fn_check_steamcmd_user(){ fn_script_log_info "Using anonymous Steam login." fi steamuser="anonymous" - steampass="" + steampass='' sleep 1 fi } From a300a15df2d8b596e1fc1961e0d6c7bd1be0ef42 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Jan 2017 21:48:10 +0000 Subject: [PATCH 17/17] this is a anonymous login removed steamuser var --- Ricochet/ricochetserver | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index 8a7658131..d3165f2fd 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -41,10 +41,6 @@ parms="-game ricochet -strictportbind +ip ${ip} -port ${port} +clientport ${clie #### Server Settings #### -## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login -steamuser="username" -steampass="password" - ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters ip="0.0.0.0"