From e98e5af66e624c923cbf0a1cb00de503d463ad7e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 13:36:57 +0200 Subject: [PATCH 01/32] Check if executable is executable Attempt to fix it if not Needs testing Fixes #591 --- lgsm/functions/check_permissions.sh | 41 +++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 3b5e52005..a7112238c 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -74,12 +74,49 @@ fn_check_permissions(){ if [ "${userrootdirperm}" != "7" ] && [ "${grouprootdirperm}" != "7" ]; then fn_print_fail_nl "Permissions issues found" fn_script_log_fatal "Permissions issues found" - fn_print_information_nl "The following directorys does not have the correct permissions:" - fn_script_log_info "The following directorys does not have the correct permissions:" + fn_print_information_nl "The following directory does not have the correct permissions:" + fn_script_log_info "The following directory does not have the correct permissions:" + fn_script_log_info "${rootdir}" ls -l "${rootdir}" core_exit.sh fi fi + # Check if executable is executable and attempt to fix it + if [ -f "${executabledir}/${executable}" ]; then + # Get permission numbers on file under the form 775 + execperm="$(stat -c %a "${executabledir}/${executable}")" + # Grab the first and second digit for user and group permission + userexecperm="${execperm:0:1}" + groupexecperm="${execperm:1:1}" + # Check for invalid user permission + if [ "${userexecperm}" == "0" ] || [ "${userexecperm}" == "2" ] || [ "${userexecperm}" == "4" ] || [ "${userexecperm}" == "6" ]; then + # If user permission is invalid, then check for invalid group permissions + if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then + # If permission issues are found + fn_print_warning "Permissions issue found" + fn_script_log_warn "Permissions issue found" + fn_print_information_nl "The following file is not executable:" + ls -l "${executabledir}/${executable}" + fn_script_log_info "The following file is not executable:" + fn_script_log_info "${executabledir}/${executable}" + fn_print_information_nl "Applying chmod u+x,g+x ${executabledir}/${executable}" + fn_script_log_info "Applying chmod u+x,g+x ${execperm}" + # Make the executable executable + chmod u+x,g+x "${executabledir}/${executable}" + # Second check to see if it's been successfully applied + if [ "${userexecperm}" == "0" ] || [ "${userexecperm}" == "2" ] || [ "${userexecperm}" == "4" ] || [ "${userexecperm}" == "6" ]; then + if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then + # If errors are still found + fn_print_fail_nl "The following file could not be set executable:" + ls -l "${executabledir}/${executable}" + fn_script_log_warn "The following file could not be set executable:" + fn_script_log_info "${executabledir}/${executable}" + core_exit.sh + fi + fi + fi + fi + fi } fn_check_ownership From f0306dbcc41d1b548e93ddd244060309c9472c3d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:18:14 +0200 Subject: [PATCH 02/32] stripping ./ from executable --- lgsm/functions/check_permissions.sh | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index a7112238c..7cb88ac51 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -82,9 +82,11 @@ fn_check_permissions(){ fi fi # Check if executable is executable and attempt to fix it - if [ -f "${executabledir}/${executable}" ]; then + # First get executable name + execname="$(echo "${executable}" | awk -F "/" '{ print $2 }')" + if [ -f "${executabledir}/${execname}" ]; then # Get permission numbers on file under the form 775 - execperm="$(stat -c %a "${executabledir}/${executable}")" + execperm="$(stat -c %a "${executabledir}/${execname}")" # Grab the first and second digit for user and group permission userexecperm="${execperm:0:1}" groupexecperm="${execperm:1:1}" @@ -93,24 +95,24 @@ fn_check_permissions(){ # If user permission is invalid, then check for invalid group permissions if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then # If permission issues are found - fn_print_warning "Permissions issue found" + fn_print_warn "Permissions issue found" fn_script_log_warn "Permissions issue found" fn_print_information_nl "The following file is not executable:" - ls -l "${executabledir}/${executable}" + ls -l "${executabledir}/${execname}" fn_script_log_info "The following file is not executable:" - fn_script_log_info "${executabledir}/${executable}" - fn_print_information_nl "Applying chmod u+x,g+x ${executabledir}/${executable}" + fn_script_log_info "${executabledir}/${execname}" + fn_print_information_nl "Applying chmod u+x,g+x ${executabledir}/${execname}" fn_script_log_info "Applying chmod u+x,g+x ${execperm}" # Make the executable executable - chmod u+x,g+x "${executabledir}/${executable}" + chmod u+x,g+x "${executabledir}/${execname}" # Second check to see if it's been successfully applied if [ "${userexecperm}" == "0" ] || [ "${userexecperm}" == "2" ] || [ "${userexecperm}" == "4" ] || [ "${userexecperm}" == "6" ]; then if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then # If errors are still found fn_print_fail_nl "The following file could not be set executable:" - ls -l "${executabledir}/${executable}" + ls -l "${executabledir}/${execname}" fn_script_log_warn "The following file could not be set executable:" - fn_script_log_info "${executabledir}/${executable}" + fn_script_log_info "${executabledir}/${execname}" core_exit.sh fi fi From 3484854959bb69d2745d85cb916728e0413e0071 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:22:08 +0200 Subject: [PATCH 03/32] refresh values for second check --- lgsm/functions/check_permissions.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 7cb88ac51..a853a22df 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -106,6 +106,11 @@ fn_check_permissions(){ # Make the executable executable chmod u+x,g+x "${executabledir}/${execname}" # Second check to see if it's been successfully applied + # Get permission numbers on file under the form 775 + execperm="$(stat -c %a "${executabledir}/${execname}")" + # Grab the first and second digit for user and group permission + userexecperm="${execperm:0:1}" + groupexecperm="${execperm:1:1}" if [ "${userexecperm}" == "0" ] || [ "${userexecperm}" == "2" ] || [ "${userexecperm}" == "4" ] || [ "${userexecperm}" == "6" ]; then if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then # If errors are still found From a36e646bf7d9d28c0558fca1062d4f4db8c65e10 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:25:48 +0200 Subject: [PATCH 04/32] new line, now nice output --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index a853a22df..946ddd301 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -95,7 +95,7 @@ fn_check_permissions(){ # If user permission is invalid, then check for invalid group permissions if [ "${groupexecperm}" == "0" ] || [ "${groupexecperm}" == "2" ] || [ "${groupexecperm}" == "4" ] || [ "${groupexecperm}" == "6" ]; then # If permission issues are found - fn_print_warn "Permissions issue found" + fn_print_warn_nl "Permissions issue found" fn_script_log_warn "Permissions issue found" fn_print_information_nl "The following file is not executable:" ls -l "${executabledir}/${execname}" From c2bd0cffb532127da623ef5c0479df79511506ab Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:34:47 +0200 Subject: [PATCH 05/32] fixed mumble port using awk instead of sed --- lgsm/functions/info_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index e3dac532f..825df0a84 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -320,7 +320,7 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + port=$(grep "port=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) queryport="${port}" # Not Set From c43ac02250d1675a8a7368a69a4aa53abaed9aff Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 14:42:55 +0200 Subject: [PATCH 06/32] first fix attempt for mumble ip --- lgsm/functions/info_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 825df0a84..7ea395dc0 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -328,7 +328,7 @@ fn_info_config_mumble(){ queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - ip=$(cat "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + ip=$(cat "${servercfgfullpath}" | grep "host=" | awk -F "=" { print $2 }' ) ipsetinconfig=1 ipinconfigvar="voice_ip" fi From 745254777ac830f9cb41edee58bb73ca569a3261 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 18 Oct 2016 18:16:39 +0200 Subject: [PATCH 07/32] more elegant execname --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 946ddd301..d085b5ef3 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -83,7 +83,7 @@ fn_check_permissions(){ fi # Check if executable is executable and attempt to fix it # First get executable name - execname="$(echo "${executable}" | awk -F "/" '{ print $2 }')" + execname="$(basename "${executable}" if [ -f "${executabledir}/${execname}" ]; then # Get permission numbers on file under the form 775 execperm="$(stat -c %a "${executabledir}/${execname}")" From 05ee12038ce7faa9275a099dda8e5ce5c67d04df Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 18 Oct 2016 22:13:54 +0100 Subject: [PATCH 08/32] fixed ip for mumble #1130 --- lgsm/functions/info_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 7ea395dc0..dc7486c85 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -320,7 +320,7 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) + port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') queryport="${port}" # Not Set @@ -328,7 +328,7 @@ fn_info_config_mumble(){ queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - ip=$(cat "${servercfgfullpath}" | grep "host=" | awk -F "=" { print $2 }' ) + ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') ipsetinconfig=1 ipinconfigvar="voice_ip" fi From e370cdd4b45c1dce2deec46ac44421bbcfe7e3f8 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 18:23:33 +0200 Subject: [PATCH 09/32] ordering & matching changes --- lgsm/functions/info_config.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index dc7486c85..66e23134e 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -321,14 +321,12 @@ fn_info_config_mumble(){ servername="Mumble" else port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - queryport="${port}" - + ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set port=${port:-"64738"} queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - - ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Misc variables ipsetinconfig=1 ipinconfigvar="voice_ip" fi From 2653e003eaadbeed5aa2a963b7f5b7547bfa4b26 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 18:28:47 +0200 Subject: [PATCH 10/32] Ordering, spacing and comments --- lgsm/functions/info_config.sh | 41 ++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 66e23134e..0bc4b945b 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -26,14 +26,15 @@ fn_info_config_avalanche(){ serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^ *//g' -e '/^--/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "MaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') port=$(grep "BindPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') - + ip=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"0"} - - ip=$(grep "BindIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/BindIP//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="BindIP" fi @@ -53,14 +54,15 @@ fn_info_config_bf1942(){ slots=$(grep "game.serverMaxPlayers" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') port=$(grep "game.serverPort" "${servercfgfullpath}" | grep -v "\--" | tr -cd '[:digit:]') queryport="22000" - + ip=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) + # Not Set servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"0"} - - ip=$(grep "game.serverIP" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/game.serverIP//g' | tr -d '=\";,:' | xargs) + + # Misc Variables ipsetinconfig=1 ipinconfigvar="game.serverIP" fi @@ -111,7 +113,8 @@ fn_info_config_minecraft(){ port=$(grep "server-port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - + ip=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set servername=${servername:-"NOT SET"} rconpassword=${rconpassword:-"NOT SET"} @@ -120,8 +123,8 @@ fn_info_config_minecraft(){ port=${port:-"NOT SET"} gamemode=${gamemode:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} - - ip=$(grep "server-ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/server-ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="server-ip" fi @@ -164,14 +167,15 @@ fn_info_config_quakelive(){ servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "sv_maxClients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set rconpassword=${rconpassword:-"NOT SET"} servername=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} - - ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="set net_ip" fi @@ -190,7 +194,7 @@ fn_info_config_wolfensteinenemyterritory(){ servername=$(grep "set sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password //g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') slots=$(grep "set sv_maxclients" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') - + ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') # Not Set rconpassword=${rconpassword:-"NOT SET"} @@ -198,8 +202,8 @@ fn_info_config_wolfensteinenemyterritory(){ serverpassword=${serverpassword:-"NOT SET"} slots=${slots:-"0"} port=${port:-"27960"} - - ip=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="set net_ip" fi @@ -302,13 +306,14 @@ fn_info_config_teamspeak3(){ port=$(grep "default_voice_port" "${servercfgfullpath}" | tr -cd '[:digit:]') queryport=$(grep "query_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') fileport=$(grep "filetransfer_port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - + ip=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set port=${port:-"9987"} queryport=${queryport:-"10011"} fileport=${fileport:-"30033"} - - ip=$(grep "voice_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Misc Variables ipsetinconfig=1 ipinconfigvar="voice_ip" fi @@ -322,10 +327,12 @@ fn_info_config_mumble(){ else port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + # Not Set port=${port:-"64738"} queryport=${queryport:-"64738"} servername="Mumble Port ${port}" + # Misc variables ipsetinconfig=1 ipinconfigvar="voice_ip" From 4b4477199df02aed84f61a46aaf23d5894f159c5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 18:31:33 +0200 Subject: [PATCH 11/32] closing ) is better after opening --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index d085b5ef3..e8aa53d8a 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -83,7 +83,7 @@ fn_check_permissions(){ fi # Check if executable is executable and attempt to fix it # First get executable name - execname="$(basename "${executable}" + execname="$(basename "${executable})" if [ -f "${executabledir}/${execname}" ]; then # Get permission numbers on file under the form 775 execperm="$(stat -c %a "${executabledir}/${execname}")" From 3aa5242cc564cc877513aee6826d48bf807386bf Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 18:34:07 +0200 Subject: [PATCH 12/32] syntax --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index e8aa53d8a..0822c160e 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -83,7 +83,7 @@ fn_check_permissions(){ fi # Check if executable is executable and attempt to fix it # First get executable name - execname="$(basename "${executable})" + execname="$(basename "${executable}")" if [ -f "${executabledir}/${execname}" ]; then # Get permission numbers on file under the form 775 execperm="$(stat -c %a "${executabledir}/${execname}")" From 60d4e9c84eccc0e918299976d700c15bd1deae81 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 19:05:26 +0200 Subject: [PATCH 13/32] Using awk for now fixes #1130 --- lgsm/functions/info_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 0bc4b945b..00949c73f 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -325,8 +325,8 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + port=$(grep "port=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) + ip=$(grep "host=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) # Not Set port=${port:-"64738"} From dcebda85ca7e90c67c2d3e52afd7e272584a7137 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 19:31:49 +0200 Subject: [PATCH 14/32] mumble has a config file --- lgsm/functions/install_config.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 6cd4a7dc4..310399cca 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -270,7 +270,11 @@ elif [ "${gamename}" == "No More Room in Hell" ]; then fn_default_config_remote fn_set_config_vars elif [ "${gamename}" == "Mumble" ]; then - : + gamedirname="Mumble" + array_configs+=( murmur.ini ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Natural Selection 2" ]; then : elif [ "${gamename}" == "NS2: Combat" ]; then From 475fdc0523a75ce2c0042e37190cddba853fa751 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 19:58:03 +0200 Subject: [PATCH 15/32] mumble has a console Related #1136 --- lgsm/functions/core_getopt.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index e23ad3111..8c8801a29 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -300,6 +300,8 @@ case "${getopt}" in command_backup.sh;; dev|dev-debug) command_dev_debug.sh;; + c|console) + command_console.sh;; i|install) command_install.sh;; dd|detect-deps) @@ -329,6 +331,7 @@ case "${getopt}" in echo -e "${blue}details\t${default}dt |Displays useful information about the server." echo -e "${blue}postdetails\t${default}pd |Post stripped details to pastebin (for support)" echo -e "${blue}backup\t${default}b |Create archive of the server." + echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." echo -e "${blue}install\t${default}i |Install the server." } | column -s $'\t' -t esac From 36c49850d16cb9bdea5912c04a74b887537cecd4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 20:22:02 +0200 Subject: [PATCH 16/32] port is a variable Partially fixes #1136 dev hardcoded stuff was still being in code --- lgsm/functions/check_status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_status.sh b/lgsm/functions/check_status.sh index f68fd9a52..08017c301 100644 --- a/lgsm/functions/check_status.sh +++ b/lgsm/functions/check_status.sh @@ -23,7 +23,7 @@ if [ "${gamename}" == "TeamSpeak 3" ]; then elif [ "${gamename}" == "Mumble" ]; then # 1: Server is listening # 0: Server is not listening, considered closed - mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep 64738 | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') + mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep ${port} | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') if [ -z "${mumblepid}" ]; then status=0 else From 8c0f2b967cc969d2b11f80d1cf0a5e487c7581d9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 20:27:23 +0200 Subject: [PATCH 17/32] get info_config.sh to run #1136 needed to get the port --- lgsm/functions/check_status.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/check_status.sh b/lgsm/functions/check_status.sh index 08017c301..4a8a381b4 100644 --- a/lgsm/functions/check_status.sh +++ b/lgsm/functions/check_status.sh @@ -21,6 +21,8 @@ if [ "${gamename}" == "TeamSpeak 3" ]; then fi elif [ "${gamename}" == "Mumble" ]; then + # Get config info + info_config.sh # 1: Server is listening # 0: Server is not listening, considered closed mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep ${port} | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') From 452d014ae05dbb1b152d46a53e64fda1c6120e3b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 20:28:53 +0200 Subject: [PATCH 18/32] Fixes #1136 --- lgsm/functions/command_stop.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 08464b405..489013e3d 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -245,8 +245,10 @@ fn_stop_teamspeak3(){ } fn_stop_mumble(){ + # Get needed port info + info_config.sh fn_print_dots "Stopping ${servername}" - mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep 64738 | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') + mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep "${port}" | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }') kill ${mumblepid} sleep 1 check_status.sh From 6c7ceb2fddc6924adfa2b5e9abb84174b5605656 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:22:11 +0200 Subject: [PATCH 19/32] cfg=servicename to prevent overwrite on update servercfg="${servicename}.ini" --- Mumble/mumbleserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 4057d2825..9e2b022ec 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -59,7 +59,7 @@ filesdir="${rootdir}/serverfiles" systemdir="${filesdir}" executabledir="${filesdir}" executable="./murmur.x86" -servercfg="murmur.ini" +servercfg="${servicename}.ini" servercfgdefault="murmur.ini" servercfgdir="${filesdir}" servercfgfullpath="${servercfgdir}/${servercfg}" From ebbe3f5a61ef96efc0270baabc33b322d52a965f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:45:02 +0200 Subject: [PATCH 20/32] Don't start from tmux or screen --- lgsm/functions/command_start.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index f7f324bf1..cb444ab5c 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -9,6 +9,23 @@ local commandname="START" local commandaction="Starting" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +fn_check_is_in_tmux(){ + if [ -n "${TMUX}" ];then + fn_print_fail_nl "Can't start a tmux session inside of a tmux session." + fn_script_log_fail "Can't start a tmux session inside of a tmux session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session." + core_exit.sh + fi +} +fn_check_is_in_screen(){ + if [ "$TERM" = "screen" ];then + fn_print_fail_nl "Can't start a tmux session inside of a screen session." + fn_script_log_fail "Can't start a tmux session inside of a screen session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session." + core_exit.sh + fi +} + fn_start_teamspeak3(){ if [ ! -e "${servercfgfullpath}" ]; then fn_print_warn_nl "${servercfgfullpath} is missing" @@ -165,6 +182,8 @@ fn_start_tmux(){ fn_print_dots "${servername}" sleep 1 +fn_check_is_in_tmux +fn_check_is_in_screen check.sh fix.sh info_config.sh From bea59e9cd101f5130aeaf9f45d7da5a351fda275 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:46:49 +0200 Subject: [PATCH 21/32] right script log Fixes #1117 --- lgsm/functions/command_start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index cb444ab5c..9f5aa295a 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -12,7 +12,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then fn_print_fail_nl "Can't start a tmux session inside of a tmux session." - fn_script_log_fail "Can't start a tmux session inside of a tmux session." + fn_script_log_fatal "Can't start a tmux session inside of a tmux session." fn_print_information_nl "LGSM already runs the server inside of a tmux session." core_exit.sh fi From 2d86a9734072f3523956cf79df8cbbe0895e7777 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:48:29 +0200 Subject: [PATCH 22/32] fn_script_log_fatal & message --- lgsm/functions/command_start.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 9f5aa295a..f3a6afdc2 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -13,15 +13,15 @@ fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then fn_print_fail_nl "Can't start a tmux session inside of a tmux session." fn_script_log_fatal "Can't start a tmux session inside of a tmux session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." core_exit.sh fi } fn_check_is_in_screen(){ if [ "$TERM" = "screen" ];then fn_print_fail_nl "Can't start a tmux session inside of a screen session." - fn_script_log_fail "Can't start a tmux session inside of a screen session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session." + fn_script_log_fatal "Can't start a tmux session inside of a screen session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." core_exit.sh fi } From 703bd28f2df67331352aa45dbdb9898a6b10aeb3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 19 Oct 2016 23:03:37 +0100 Subject: [PATCH 23/32] tmuxception --- lgsm/functions/command_start.sh | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index f3a6afdc2..fdb4dcfc5 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -11,17 +11,21 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then - fn_print_fail_nl "Can't start a tmux session inside of a tmux session." - fn_script_log_fatal "Can't start a tmux session inside of a tmux session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside another tmux session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" core_exit.sh fi } fn_check_is_in_screen(){ - if [ "$TERM" = "screen" ];then - fn_print_fail_nl "Can't start a tmux session inside of a screen session." - fn_script_log_fatal "Can't start a tmux session inside of a screen session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." + if [ "$TERM" == "screen" ];then + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside screen session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" core_exit.sh fi } From 1a01ece469047fc2c7f657f994a033c63434b85d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:15:52 +0200 Subject: [PATCH 24/32] Introducing the tmuxception ! --- lgsm/functions/check_tmuxception.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lgsm/functions/check_tmuxception.sh diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh new file mode 100644 index 000000000..4dfbd2a16 --- /dev/null +++ b/lgsm/functions/check_tmuxception.sh @@ -0,0 +1,29 @@ +#!/bin/bash +# LGSM check_config.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Checks if run from tmux or screen + +local commandname="check" + +fn_check_is_in_tmux(){ + if [ -n "${TMUX}" ];then + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside another tmux session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" + core_exit.sh + fi +} +fn_check_is_in_screen(){ + if [ "$TERM" == "screen" ];then + fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." + fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." + fn_print_information_nl "LGSM creates a tmux session when starting the server." + echo "It is not possible to run a tmux session inside screen session" + echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" + core_exit.sh + fi +} From 6fec42b7c18eba1862c8c6d0fba0067dbbd6cc23 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:16:44 +0200 Subject: [PATCH 25/32] tmuxception moved to check_tmuxception.sh --- lgsm/functions/command_start.sh | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index fdb4dcfc5..f7f324bf1 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -9,27 +9,6 @@ local commandname="START" local commandaction="Starting" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -fn_check_is_in_tmux(){ - if [ -n "${TMUX}" ];then - fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a tmux session." - fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a tmux session." - fn_print_information_nl "LGSM creates a tmux session when starting the server." - echo "It is not possible to run a tmux session inside another tmux session" - echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" - core_exit.sh - fi -} -fn_check_is_in_screen(){ - if [ "$TERM" == "screen" ];then - fn_print_fail_nl "tmuxception error: Sorry Cobb you cannot start a tmux session inside of a screen session." - fn_script_log_fatal "tmuxception error: Attempted to start a tmux session inside of a screen session." - fn_print_information_nl "LGSM creates a tmux session when starting the server." - echo "It is not possible to run a tmux session inside screen session" - echo "https://github.com/GameServerManagers/LinuxGSM/wiki/Tmux#tmuxception" - core_exit.sh - fi -} - fn_start_teamspeak3(){ if [ ! -e "${servercfgfullpath}" ]; then fn_print_warn_nl "${servercfgfullpath} is missing" @@ -186,8 +165,6 @@ fn_start_tmux(){ fn_print_dots "${servername}" sleep 1 -fn_check_is_in_tmux -fn_check_is_in_screen check.sh fix.sh info_config.sh From 4ff780a194eac279f289ebda640cdfb7f177c716 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:29:23 +0200 Subject: [PATCH 26/32] welcome tmuxception fixes #1117 --- lgsm/functions/check.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 751652c2f..25fead75b 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -11,6 +11,7 @@ local commandname="CHECK" # check.sh selects which checks to run by using arrays check_root.sh +check_tmuxception.sh check_permissions.sh if [ "${function_selfname}" != "command_install.sh" ]&&[ "${function_selfname}" != "command_update_functions.sh" ]; then From 8702431d33f6493d5989dcea6adcb0ea07a383e0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:32:51 +0200 Subject: [PATCH 27/32] Fixes #1117 --- lgsm/functions/core_functions.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 987ffcde9..5a38a1183 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -116,7 +116,7 @@ fn_fetch_core_dl } -# Command +# Commands command_console.sh(){ functionfile="${FUNCNAME}" @@ -263,6 +263,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +check_tmuxception.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + # Compress @@ -299,6 +304,7 @@ functionfile="${FUNCNAME}" fn_fetch_function } + # Fix fix.sh(){ From 4aa8544dfadeed74c1aaf62f8fe7809cf8db6d95 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 19 Oct 2016 23:32:53 +0100 Subject: [PATCH 28/32] Its called folders in Windows & directorys in Linux --- lgsm/functions/check_permissions.sh | 4 ++-- lgsm/functions/command_fastdl.sh | 24 ++++++++++++------------ lgsm/functions/core_getopt.sh | 2 +- lgsm/functions/install_config.sh | 4 ++-- lgsm/functions/logs.sh | 4 ++-- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 0822c160e..a99bb0b7b 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Checks ownership & permissions of scripts, files and folders. +# Description: Checks ownership & permissions of scripts, files and directorys. local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" @@ -66,7 +66,7 @@ fn_check_permissions(){ # Check rootdir permissions if [ -n "${rootdir}" ]; then - # Get permission numbers on folder under the form 775 + # Get permission numbers on directory under the form 775 rootdirperm="$(stat -c %a "${rootdir}")" # Grab the first and second digit for user and group permission userrootdirperm="${rootdirperm:0:1}" diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index f2728ea74..4afe3ba60 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Creates a FastDL folder. +# Description: Creates a FastDL directory. local commandname="FASTDL" local commandaction="FastDL" @@ -52,7 +52,7 @@ fn_fastdl_init(){ done fn_script_log "Initiating FastDL creation" - # Check and create folders + # Check and create directorys if [ ! -d "${webdir}" ]; then echo "" fn_print_info "Creating FastDL directories" @@ -67,7 +67,7 @@ fn_fastdl_init(){ echo -en "\n" fi if [ ! -d "${fastdldir}" ]; then - # No folder, won't ask for removing old ones + # No directory, won't ask for removing old ones newfastdl=1 fn_print_dots "Creating fastdl directory" sleep 0.5 @@ -88,7 +88,7 @@ fn_fastdl_config(){ fn_script_log "Configuration" sleep 2 echo -en "\n" - # Prompt for clearing old files if folder was already here + # Prompt for clearing old files if directory was already here if [ -n "${newfastdl}" ] && [ "${newfastdl}" == "0" ]; then fn_print_dots while true; do @@ -133,12 +133,12 @@ fn_fastdl_gmod_config(){ fn_clear_old_fastdl(){ # Clearing old FastDL if user answered yes if [ "${clearoldfastdl}" == "on" ]; then - fn_print_info "Clearing existing FastDL folder" - fn_script_log "Clearing existing FastDL folder" + fn_print_info "Clearing existing FastDL directory" + fn_script_log "Clearing existing FastDL directory" sleep 0.5 rm -R "${fastdldir:?}"/* - fn_print_ok "Old FastDL folder cleared" - fn_script_log "Old FastDL folder cleared" + fn_print_ok "Old FastDL directory cleared" + fn_script_log "Old FastDL directory cleared" sleep 1 echo -en "\n" fi @@ -152,7 +152,7 @@ fn_gmod_fastdl(){ sleep 1 echo -en "\n" - # No choice to cd to the directory, as find can't then display relative folder + # No choice to cd to the directory, as find can't then display relative directory cd "${systemdir}" # Map Files @@ -221,7 +221,7 @@ fn_gmod_fastdl(){ # Going back to rootdir in order to prevent mistakes cd "${rootdir}" - # Correct addons folder structure for FastDL + # Correct addons directory structure for FastDL if [ -d "${fastdldir}/addons" ]; then fn_print_info "Adjusting addons' file structure" fn_script_log "Adjusting addon's file structure" @@ -233,7 +233,7 @@ fn_gmod_fastdl(){ echo -en "\n" fi - # Correct content that may be into a lua folder by mistake like some darkrpmodification addons + # Correct content that may be into a lua directory by mistake like some darkrpmodification addons if [ -d "${fastdldir}/lua" ]; then fn_print_dots "Typical DarkRP shit detected, fixing" sleep 2 @@ -244,7 +244,7 @@ fn_gmod_fastdl(){ fi } -# Generate lua file that will force download any file into the FastDL folder +# Generate lua file that will force download any file into the FastDL directory fn_lua_fastdl(){ # Remove lua file if luaressource is turned off and file exists echo "" diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 8c8801a29..217650dbc 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -408,7 +408,7 @@ case "${getopt}" in echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." echo -e "${blue}install\t${default}i |Install the server." echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." - echo -e "${blue}fastdl\t${default}fd |Generates or update a FastDL folder for your server." + echo -e "${blue}fastdl\t${default}fd |Generates or update a FastDL directory for your server." } | column -s $'\t' -t esac } diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 310399cca..5c241aec5 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -39,8 +39,8 @@ fn_set_config_vars(){ # Checks if cfg dir exists, creates it if it doesn't fn_check_cfgdir(){ if [ ! -d "${servercfgdir}" ]; then - echo "creating ${servercfgdir} config folder." - fn_script_log_info "creating ${servercfgdir} config folder." + echo "creating ${servercfgdir} config directory." + fn_script_log_info "creating ${servercfgdir} config directory." mkdir -pv "${servercfgdir}" fi } diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index b31bdc102..4bf9ab903 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -15,7 +15,7 @@ if [ -n "${consolelog}" ]; then fi fi -# For games not displaying a console, and having logs into their game folder +# For games not displaying a console, and having logs into their game directory if [ "${function_selfname}" == "command_start.sh" ] && [ -n "${gamelogfile}" ]; then if [ -n "$(find "${systemdir}" -name "gamelog*.log")" ]; then fn_print_info "Moving game logs to ${gamelogdir}" @@ -86,7 +86,7 @@ if [ $(find "${scriptlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; th find "${legacyserverlogdir}"/ -type f -mtime +"${logdays}"| tee >> "${scriptlog}" legacycount=$(find "${legacyserverlogdir}"/ -type f -mtime +"${logdays}"|wc -l) find "${legacyserverlogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; - # Remove folder if empty + # Remove directory if empty if [ ! "$(ls -A "${legacyserverlogdir}")" ]; then rm -rf "${legacyserverlogdir}" fi From f3b128a0022cb3e578e90a34d20e9e837d5fa990 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 19 Oct 2016 23:35:08 +0100 Subject: [PATCH 29/32] Bad spelling: directories not directorys --- lgsm/functions/check_permissions.sh | 2 +- lgsm/functions/command_fastdl.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index a99bb0b7b..1411e649c 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # Website: https://gameservermanagers.com -# Description: Checks ownership & permissions of scripts, files and directorys. +# Description: Checks ownership & permissions of scripts, files and directories. local commandname="CHECK" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index 4afe3ba60..c66834b98 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -52,7 +52,7 @@ fn_fastdl_init(){ done fn_script_log "Initiating FastDL creation" - # Check and create directorys + # Check and create directories if [ ! -d "${webdir}" ]; then echo "" fn_print_info "Creating FastDL directories" From b7b2d6e3788319f03075a7c39e96668be5253f31 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:38:07 +0200 Subject: [PATCH 30/32] run the tmuxception #1117 --- lgsm/functions/check_tmuxception.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/check_tmuxception.sh b/lgsm/functions/check_tmuxception.sh index 4dfbd2a16..d23fd88a4 100644 --- a/lgsm/functions/check_tmuxception.sh +++ b/lgsm/functions/check_tmuxception.sh @@ -27,3 +27,6 @@ fn_check_is_in_screen(){ core_exit.sh fi } + +fn_check_is_in_tmux +fn_check_is_in_screen From 25499860b7b886a75552ca13fedba8e76d19b39e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:40:50 +0200 Subject: [PATCH 31/32] check_tmux.sh has moved to check_deps.sh Script doesn't exist anymore --- lgsm/functions/core_functions.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 5a38a1183..9456f0955 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -258,11 +258,6 @@ functionfile="${FUNCNAME}" fn_fetch_function } -check_tmux.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_function -} - check_tmuxception.sh(){ functionfile="${FUNCNAME}" fn_fetch_function From 5c5ad3ea03d90ceac0dc53717d749f5ccefc47aa Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 00:43:05 +0200 Subject: [PATCH 32/32] fix_ut99.sh has moved in another function --- lgsm/functions/core_functions.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 9456f0955..f5ba4ce9e 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -544,11 +544,6 @@ functionfile="${FUNCNAME}" fn_fetch_function } -fix_ut99.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_function -} - # Calls the global Ctrl-C trap core_trap.sh