diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 9871f6ac2..977a06225 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -1,5 +1,5 @@ #!/bin/bash -# Counter Strike +# Counter-Strike # Server Management Script # Author: Daniel Gibbs # Website: https://gameservermanagers.com @@ -57,7 +57,7 @@ appidmod="cstrike" # Server Details servicename="cs-server" -gamename="Counter Strike 1.6" +gamename="Counter-Strike 1.6" engine="goldsource" # Directories diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index 13fe3da1e..2b0ff70dd 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -1,5 +1,5 @@ #!/bin/bash -# Counter Strike: Condition Zero +# Counter-Strike: Condition Zero # Server Management Script # Author: Daniel Gibbs # Website: https://gameservermanagers.com @@ -57,7 +57,7 @@ appidmod="czero" # Server Details servicename="cscz-server" -gamename="Counter Strike: Condition Zero" +gamename="Counter-Strike: Condition Zero" engine="goldsource" # Directories diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 1f8c42864..c409c279b 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -1,5 +1,5 @@ #!/bin/bash -# Counter Strike: Global Offensive +# Counter-Strike: Global Offensive # Server Management Script # Author: Daniel Gibbs # Website: https://gameservermanagers.com @@ -85,7 +85,7 @@ branch="" # Server Details servicename="csgo-server" -gamename="Counter Strike: Global Offensive" +gamename="Counter-Strike: Global Offensive" engine="source" # Directories diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 27d58cc60..edd7a7c08 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -1,5 +1,5 @@ #!/bin/bash -# Counter Strike: Source +# Counter-Strike: Source # Server Management Script # Author: Daniel Gibbs # Website: https://gameservermanagers.com @@ -62,7 +62,7 @@ appid="232330" # Server Details servicename="css-server" -gamename="Counter Strike: Source" +gamename="Counter-Strike: Source" engine="source" # Directories diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index ac7fdc425..a19ea6582 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -40,7 +40,7 @@ updateonstart="off" # https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ -parms="-game left4dead -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} -tickrate ${tickrate} +map ${defaultmap} -maxplayers ${maxplayers}" +parms="-game left4dead -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" } #### Advanced Variables #### diff --git a/QuakeLive/cfg/lgsm-default.cfg b/QuakeLive/cfg/lgsm-default.cfg index 501193a40..6dd87b484 100644 --- a/QuakeLive/cfg/lgsm-default.cfg +++ b/QuakeLive/cfg/lgsm-default.cfg @@ -13,7 +13,7 @@ set sv_mapPoolFile "mappool.txt" // Map pool that the server will use. See defa // Built in map pools: mappool.txt, mappool_ca.txt, mappool_ctf.txt, mappool_duel.txt, // mappool_ffa.txt, mappool_race.txt, mappool_tdm.txt set g_accessFile "access.txt" // Used to determine which 64-bit Steam IDs have admin access, or are banned. - + set sv_maxClients "16" // How many players can connect at once. set g_password "" // Set a server-wide password, and stop all users from connecting without it. set sv_privateClients "0" // Reserve slots that can be used with sv_privatePassword. diff --git a/EnemyTerritory/cfg/lgsm-default.cfg b/WolfensteinEnemyTerritory/cfg/lgsm-default.cfg similarity index 100% rename from EnemyTerritory/cfg/lgsm-default.cfg rename to WolfensteinEnemyTerritory/cfg/lgsm-default.cfg diff --git a/EnemyTerritory/etserver b/WolfensteinEnemyTerritory/wetserver similarity index 95% rename from EnemyTerritory/etserver rename to WolfensteinEnemyTerritory/wetserver index c49619f74..86f4f0839 100644 --- a/EnemyTerritory/etserver +++ b/WolfensteinEnemyTerritory/wetserver @@ -26,11 +26,9 @@ pushbulletalert="off" pushbullettoken="accesstoken" # Start Variables -ip="0.0.0.0" -port="27960" fn_parms(){ - parms="+set net_strict 1 +set net_ip ${ip} +set net_port ${port} +set fs_homepath ${filesdir} +exec ${servicename}.cfg" + parms="+set net_strict 1 +set fs_homepath ${filesdir} +exec ${servercfgfullpath}" } #### Advanced Variables #### diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 46513f328..51b9befbc 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -166,8 +166,8 @@ if [ -n "$(command -v dpkg-query)" ]; then # 7 Days to Die elif [ "${gamename}" == "7 Days To Die" ]; then array_deps_required+=( telnet expect ) - # No More Room in Hell, Counter Strike: Source and Garry's Mod - elif [ "${gamename}" == "No More Room in Hell" ]||[ "${gamename}" == "Counter Strike: Source" ]||[ "${gamename}" == "Garry's Mod" ]; then + # No More Room in Hell, Counter-Strike: Source and Garry's Mod + elif [ "${gamename}" == "No More Room in Hell" ]||[ "${gamename}" == "Counter-Strike: Source" ]||[ "${gamename}" == "Garry's Mod" ]; then if [ "${arch}" == "x86_64" ]; then array_deps_required+=( lib32tinfo5 ) else @@ -234,8 +234,8 @@ elif [ -n "$(command -v yum)" ]; then # 7 Days to Die elif [ "${gamename}" == "7 Days To Die" ]; then array_deps_required+=( telnet expect ) - # No More Room in Hell, Counter Strike: Source and Garry's Mod - elif [ "${gamename}" == "No More Room in Hell" ]||[ "${gamename}" == "Counter Strike: Source" ]||[ "${gamename}" == "Garry's Mod" ]; then + # No More Room in Hell, Counter-Strike: Source and Garry's Mod + elif [ "${gamename}" == "No More Room in Hell" ]||[ "${gamename}" == "Counter-Strike: Source" ]||[ "${gamename}" == "Garry's Mod" ]; then array_deps_required+=( ncurses-libs.i686 ) # Brainbread 2 and Don't Starve Together elif [ "${gamename}" == "Brainbread 2" ]||[ "${gamename}" == "Don't Starve Together" ]; then diff --git a/lgsm/functions/command_console.sh b/lgsm/functions/command_console.sh index dbd8a58f9..ee9f13b6e 100644 --- a/lgsm/functions/command_console.sh +++ b/lgsm/functions/command_console.sh @@ -9,11 +9,8 @@ local commandaction="Console" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh -echo "" -echo "${gamename} Console" -echo "=================================" -echo "" -echo "Press \"CTRL+b d\" to exit console." +fn_print_header +fn_print_information_nl "Press \"CTRL+b\" then \"d\" to exit console." fn_print_warning_nl "Do NOT press CTRL+c to exit." echo "" while true; do diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 79dc4a4d5..4035319e1 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -24,14 +24,37 @@ fix.sh info_distro.sh # NOTE: Check if works with server without parms. Could be intergrated in to info_parms.sh fn_parms -echo "" -echo "${gamename} Debug" -echo "=================================" -echo "" -echo -e "Distro: ${distroname}" -echo -e "Arch: ${arch}" -echo -e "Kernel: ${kernel}" -echo -e "Hostname: $HOSTNAME" +fn_print_header +echo -e "${blue}Distro:\t${default}${distroname}" +echo -e "${blue}Arch:\t${default}${arch}" +echo -e "${blue}Kernel:\t${default}${kernel}" +echo -e "${blue}Hostname:\t${default}$HOSTNAME" +echo -e "${blue}tmux:\t${default}${tmuxv}" +echo -e "${blue}Avg Load:\t${default}${load}" +echo -e "${blue}Free Memory:\t${default}${physmemfree}" +echo -e "${blue}Free Disk:\t${default}${availspace}" +# GLIBC required +if [ -n "${glibcrequired}" ]; then + if [ "${glibcrequired}" == "NOT REQUIRED" ]; then + : + elif [ "${glibcrequired}" == "UNKNOWN" ]; then + echo -e "${blue}GLIBC required:\t${red}${glibcrequired}" + elif [ "$(printf '%s\n'${glibcrequired}'\n' ${glibcversion} | sort -V | head -n 1)" != "${glibcrequired}" ]; then + if [ "${glibcfix}" == "yes" ]; then + echo -e "${blue}GLIBC required:\t${red}${glibcrequired} ${default}(${green}Using GLIBC fix${default})" + else + echo -e "${blue}GLIBC required:\t${red}${glibcrequired} ${default}(${red}GLIBC version too old${default})" + fi + else + echo -e "${blue}GLIBC required:\t${green}${glibcrequired}${default}" + fi +fi +# Server ip +echo -e "${blue}Server IP:\t${default}${ip}:${port}" +# Server password +if [ -n "${serverpassword}" ]; then + echo -e "${blue}Server password:\t${default}${serverpassword}" +fi echo "" echo "Start parameters:" if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index b4beceed4..bcfe36fd2 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -28,7 +28,7 @@ fi # Configuration install_config.sh -if [ "${gamename}" == "Counter Strike: Global Offensive" ]||[ "${gamename}" == "Team Fortress 2" ]||[ "${gamename}" == "BrainBread 2" ]; then +if [ "${gamename}" == "Counter-Strike: Global Offensive" ]||[ "${gamename}" == "Team Fortress 2" ]||[ "${gamename}" == "BrainBread 2" ]; then install_gslt.sh elif [ "${gamename}" == "TeamSpeak 3" ]; then install_ts3db.sh diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 65b68dad5..0037185b4 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -41,7 +41,7 @@ fn_validation(){ fn_print_dots "Validating files:" sleep 0.5 -fn_print_dots_nl "Validating files: SteamCMD" +fn_print_dots "Validating files: SteamCMD" sleep 1 check.sh check_status.sh diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index f805c8b48..c02845054 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -8,6 +8,10 @@ # Fixes for legacy code if [ "${gamename}" == "Teamspeak 3" ]; then gamename="TeamSpeak 3" +elif [ "${gamename}" == "Counter Strike: Global Offensive" ]; then + gamename="Counter-Strike: Global Offensive" +elif [ "${gamename}" == "Counter Strike: Source" ]; then + gamename="Counter-Strike: Source" fi if [ "${emailnotification}" == "on" ]; then diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 2e653e0da..67f671209 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -41,7 +41,7 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; - dd|deps-detect) + dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; @@ -103,7 +103,7 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; - dd|deps-detect) + dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; @@ -164,7 +164,7 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; - dd|deps-detect) + dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; @@ -220,7 +220,7 @@ case "${getopt}" in command_dev_debug.sh;; i|install) command_install.sh;; - dd|deps-detect) + dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; @@ -284,7 +284,7 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; - dd|deps-detect) + dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; @@ -351,7 +351,7 @@ case "${getopt}" in fn_autoinstall;; mc|map-compressor) compress_ut99_maps.sh;; - dd|deps-detect) + dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; @@ -419,7 +419,7 @@ case "${getopt}" in command_install.sh;; ai|auto-install) fn_autoinstall;; - dd|deps-detect) + dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; @@ -489,7 +489,7 @@ case "${getopt}" in install_ut2k4_key.sh;; mc|map-compressor) compress_unreal2_maps.sh;; - dd|deps-detect) + dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) command_dev_detect_glibc.sh;; diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index d23733cde..98814cf03 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -13,16 +13,17 @@ if [ "${ansi}" != "off" ]; then red="\e[31m" green="\e[32m" yellow="\e[33m" + lightyellow="\e[93m" blue="\e[34m" + lightblue="\e[94m" magenta="\e[35m" cyan="\e[36m" - lightyellow="\e[93m" # carriage return & erase to end of line creeol="\r\033[K" fi # Log display -########## +######################## ## Feb 28 14:56:58 ut99-server: Monitor: fn_script_log(){ if [ -d "${scriptlogdir}" ]; then @@ -93,8 +94,8 @@ fn_script_log_info(){ fi } -# On-Screen -########## +# On-Screen - Automated functions +################################## # [ .... ] fn_print_dots(){ @@ -210,8 +211,17 @@ fn_print_info_nl(){ echo -en "\n" } -# On-Screen full word -########## +# On-Screen - Interactive messages +################################## + +# No More Room in Hell Debug +# ================================= +fn_print_header(){ + echo -e "" + echo -e "${gamename} ${commandaction}" + echo -e "=================================${default}" + echo -e "" +} # Complete! fn_print_complete(){ @@ -259,7 +269,7 @@ fn_print_information_nl(){ } # On-Screen End of Line -########## +################################## # OK fn_print_ok_eol(){ diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 4374027eb..41e1ecc2f 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -37,7 +37,7 @@ if [ "${function_selfname}" != "command_install.sh" ]; then if [ "${gamename}" == "ARMA 3" ]; then fix_arma3.sh - elif [ "${gamename}" == "Counter Strike: Global Offensive" ]; then + elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then fix_csgo.sh elif [ "${gamename}" == "Don't Starve Together" ]; then fix_dst.sh diff --git a/lgsm/functions/info_parms.sh b/lgsm/functions/info_parms.sh index 81aa3c676..007b44fa8 100644 --- a/lgsm/functions/info_parms.sh +++ b/lgsm/functions/info_parms.sh @@ -15,7 +15,6 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" unavailable="${red}UNAVAILABLE${default}" zero="${red}0${default}" - fn_info_config_idtech3(){ # Not Set port=${port:-"NOT SET"} diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 1aafd1602..5a856f8e6 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -261,22 +261,22 @@ elif [ "${gamename}" == "Codename CURE" ]; then wget -N /dev/null ${githuburl}/CodenameCURE/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_sourceconfig -elif [ "${gamename}" == "Counter Strike 1.6" ]; then +elif [ "${gamename}" == "Counter-Strike 1.6" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/CounterStrike/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_goldsourceconfig -elif [ "${gamename}" == "Counter Strike: Condition Zero" ]; then +elif [ "${gamename}" == "Counter-Strike: Condition Zero" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/CounterStrikeConditionZero/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_goldsourceconfig -elif [ "${gamename}" == "Counter Strike: Global Offensive" ]; then +elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/CounterStrikeGlobalOffensive/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 fn_sourceconfig -elif [ "${gamename}" == "Counter Strike: Source" ]; then +elif [ "${gamename}" == "Counter-Strike: Source" ]; then echo -e "downloading lgsm-default.cfg...\c" wget -N /dev/null ${githuburl}/CounterStrikeSource/cfg/lgsm-default.cfg 2>&1 | grep -F HTTP | cut -c45- | uniq sleep 1 diff --git a/lgsm/functions/install_gslt.sh b/lgsm/functions/install_gslt.sh index 3bbe063e0..c611e91a3 100644 --- a/lgsm/functions/install_gslt.sh +++ b/lgsm/functions/install_gslt.sh @@ -12,7 +12,7 @@ echo "" echo "Game Server Login Token" echo "=================================" sleep 1 -if [ "${gamename}" == "Counter Strike: Global Offensive" ]||[ "${gamename}" == "Counter Strike: Source" ]; then +if [ "${gamename}" == "Counter-Strike: Global Offensive" ]||[ "${gamename}" == "Counter-Strike: Source" ]; then echo "GSLT is required to run a public ${gamename} server" fn_script_log_info "GSLT is required to run a public ${gamename} server" else