From 3b6e66a5ae8f7348af3023a63e59f13d4691a978 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 1 Mar 2016 19:37:59 +0000 Subject: [PATCH] Code tidy --- functions/check_ip.sh | 4 +--- functions/command_dev_debug.sh | 2 ++ functions/command_install.sh | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/functions/check_ip.sh b/functions/check_ip.sh index c4b5be149..2a5ae5794 100644 --- a/functions/check_ip.sh +++ b/functions/check_ip.sh @@ -7,9 +7,7 @@ lgsm_version="271215" # Description: Automatically identifies the server interface IP. # If multiple interfaces are detected the user will need to manualy set using ip="0.0.0.0". -if [ "${gamename}" == "Teamspeak 3" ]; then - : -else +if [ "${gamename}" != "Teamspeak 3" ]; then if [ ! -f "/bin/ip" ]; then ipcommand="/sbin/ip" else diff --git a/functions/command_dev_debug.sh b/functions/command_dev_debug.sh index 1855f5919..46bae900d 100644 --- a/functions/command_dev_debug.sh +++ b/functions/command_dev_debug.sh @@ -4,6 +4,8 @@ # Website: http://gameservermanagers.com lgsm_version="281215" +# Description: Dev only: enables debuging log to be saved to dev-debug.log. + function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" if [ -f ".dev-debug" ]; then diff --git a/functions/command_install.sh b/functions/command_install.sh index e14e4482e..877896380 100644 --- a/functions/command_install.sh +++ b/functions/command_install.sh @@ -6,7 +6,6 @@ lgsm_version="260216" # Description: Overall function for the installer. - local modulename="Install" function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"