|
@ -9,13 +9,31 @@ |
|
|
|
|
|
|
|
|
core_dl.sh(){ |
|
|
core_dl.sh(){ |
|
|
functionfile="${FUNCNAME}" |
|
|
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" |
|
|
fn_fetch_core_dl "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" |
|
|
else |
|
|
else |
|
|
fn_bootstrap_fetch_file_github "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" |
|
|
fn_bootstrap_fetch_file_github "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" |
|
|
fi |
|
|
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(){ |
|
|
core_exit.sh(){ |
|
|
functionfile="${FUNCNAME}" |
|
|
functionfile="${FUNCNAME}" |
|
|
fn_fetch_function |
|
|
fn_fetch_function |
|
@ -31,11 +49,6 @@ functionfile="${FUNCNAME}" |
|
|
fn_fetch_function |
|
|
fn_fetch_function |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
core_messages.sh(){ |
|
|
|
|
|
functionfile="${FUNCNAME}" |
|
|
|
|
|
fn_bootstrap_fetch_file_github "lgsm/functions" "core_messages.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Commands |
|
|
# Commands |
|
|
|
|
|
|
|
@ -550,6 +563,9 @@ if [ ! -d "${tmpdir}" ]; then |
|
|
mkdir -p "${tmpdir}" |
|
|
mkdir -p "${tmpdir}" |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
# Calls code required for legacy servers |
|
|
|
|
|
core_legacy.sh |
|
|
|
|
|
|
|
|
# Calls on-screen messages (bootstrap) |
|
|
# Calls on-screen messages (bootstrap) |
|
|
core_messages.sh |
|
|
core_messages.sh |
|
|
|
|
|
|
|
|