From 115a8d61278071577d804444273b58257fa13a62 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 11 May 2017 19:44:25 +0100 Subject: [PATCH] Added legacy function to handle legacy scripts --- lgsm/functions/core_functions.sh | 28 ++++++++++++++++++++++------ lgsm/functions/core_legacy.sh | 9 +++++++++ 2 files changed, 31 insertions(+), 6 deletions(-) create mode 100644 lgsm/functions/core_legacy.sh diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 571f8ce5d..c319cd55a 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -9,13 +9,31 @@ core_dl.sh(){ functionfile="${FUNCNAME}" -if [ -z $(type fn_bootstrap_fetch_file_github) ];then +if [ "$(type fn_fetch_core_dl)" ];then fn_fetch_core_dl "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" else fn_bootstrap_fetch_file_github "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" fi } +core_messages.sh(){ +functionfile="${FUNCNAME}" +if [ "$(type fn_fetch_core_dl)" ];then + fn_fetch_core_dl "lgsm/functions" "core_messages.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" +else + fn_bootstrap_fetch_file_github "lgsm/functions" "core_messages.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" +fi +} + +core_legacy.sh(){ +functionfile="${FUNCNAME}" +if [ "$(type fn_fetch_core_dl)" ];then + fn_fetch_core_dl "lgsm/functions" "core_legacy.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" +else + fn_bootstrap_fetch_file_github "lgsm/functions" "core_legacy.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" +fi +} + core_exit.sh(){ functionfile="${FUNCNAME}" fn_fetch_function @@ -31,11 +49,6 @@ functionfile="${FUNCNAME}" fn_fetch_function } -core_messages.sh(){ -functionfile="${FUNCNAME}" -fn_bootstrap_fetch_file_github "lgsm/functions" "core_messages.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" -} - # Commands @@ -550,6 +563,9 @@ if [ ! -d "${tmpdir}" ]; then mkdir -p "${tmpdir}" fi +# Calls code required for legacy servers +core_legacy.sh + # Calls on-screen messages (bootstrap) core_messages.sh diff --git a/lgsm/functions/core_legacy.sh b/lgsm/functions/core_legacy.sh new file mode 100644 index 000000000..e7938e16d --- /dev/null +++ b/lgsm/functions/core_legacy.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# LinuxGSM core_legacy.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Code for backwards compatability with older versions of LinuxGSM. + +if [ -z ${serverfiles} ]; then + serverfiles="${filesdir}" +fi \ No newline at end of file