From 37c3f7f2e27414c698e592598bce76d3a855a697 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 6 Jan 2016 20:23:28 +0000 Subject: [PATCH] Adjusted to run on specific commands --- functions/check.sh | 10 +++++++--- functions/check_config.sh | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/functions/check.sh b/functions/check.sh index fd8b57a30..86e141416 100644 --- a/functions/check.sh +++ b/functions/check.sh @@ -61,6 +61,10 @@ do fi done -if [ "${function_selfname}" != "command_install.sh" ]; then - check_config.sh -fi \ No newline at end of file +local allowed_commands_array=( command_console.sh command_debug.sh command_details.sh command_monitor.sh command_start.sh command_stop.sh ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${function_selfname}" ]; then + check_config.sh + fi +done \ No newline at end of file diff --git a/functions/check_config.sh b/functions/check_config.sh index e12d942c0..24d32318f 100644 --- a/functions/check_config.sh +++ b/functions/check_config.sh @@ -8,7 +8,7 @@ lgsm_version="060116" if [ ! -e "${servercfgfullpath}" ]; then if [ "${gamename}" != "Hurtworld" ]; then - fn_printwarnnl "Configuration file missing!" + fn_printwarnnl "Config file missing!" echo "${servercfgfullpath}" fn_scriptlog "Configuration file missing!" fn_scriptlog "${servercfgfullpath}"