From 840c28011d1744734f3885f08a48da2fd3531e6f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 6 Jan 2016 19:45:46 +0000 Subject: [PATCH] Added check_config.sh This function checks that servercfgfullpath exists and warns if missing --- functions/check.sh | 10 ++++++++-- functions/check_config.sh | 14 ++++++++++++++ functions/core_functions.sh | 7 ++++++- 3 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 functions/check_config.sh diff --git a/functions/check.sh b/functions/check.sh index 909c04777..3456408cc 100644 --- a/functions/check.sh +++ b/functions/check.sh @@ -2,7 +2,7 @@ # LGSM fn_check function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -lgsm_version="271215" +lgsm_version="060116" # Description: Overall function for managing checks. # Runs checks that will either halt on or fix an issue. @@ -59,4 +59,10 @@ do if [ "${allowed_command}" == "${function_selfname}" ]; then check_tmux.sh fi -done \ No newline at end of file +done + +if [ "${function_selfname}" != "command_install.sh" ]; then + if [ "${allowed_command}" == "${function_selfname}" ]; then + check_config.sh + fi +fi \ No newline at end of file diff --git a/functions/check_config.sh b/functions/check_config.sh new file mode 100644 index 000000000..782b6ec9e --- /dev/null +++ b/functions/check_config.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# LGSM check_config.sh function +# Author: Daniel Gibbs +# Website: http://gameservermanagers.com +lgsm_version="060116" + +# Description: If server config missing warn user. + +if [ ! -e "${servercfgfullpath}" ]; then + if [ "${gamename}" != "Hurtworld" ]; then + fn_printwarnnl "Configuration file missing" + echo "${servercfgfullpath}" + fi +fi \ No newline at end of file diff --git a/functions/core_functions.sh b/functions/core_functions.sh index 698365058..7f97004ef 100644 --- a/functions/core_functions.sh +++ b/functions/core_functions.sh @@ -2,7 +2,7 @@ # LGSM core_functions.sh function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -lgsm_version="030116" +lgsm_version="060116" # Description: Defines all functions to allow download and execution of functions using fn_runfunction. # This function is called first before any other function. Without this file other functions would not load. @@ -101,6 +101,11 @@ functionfile="${FUNCNAME}" fn_runfunction } +check_config.sh(){ +functionfile="${FUNCNAME}" +fn_runfunction +} + check_ip.sh(){ functionfile="${FUNCNAME}" fn_runfunction