Browse Source
This commit removes a large number of unused functions from the core_functions.sh module. These functions were not being called or used anywhere in the codebase and were therefore unnecessary. Removing them helps to clean up the code and improve maintainability.feature/dst-changes
2 changed files with 9 additions and 816 deletions
@ -1,816 +0,0 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM core_functions.sh module |
|||
# Author: Daniel Gibbs |
|||
# Contributors: http://linuxgsm.com/contrib |
|||
# Website: https://linuxgsm.com |
|||
# Description: Defines all functions to allow download and execution of functions using fn_fetch_function. |
|||
# This function is called first before any other function. Without this file other functions will not load. |
|||
|
|||
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|||
|
|||
modulesversion="v23.5.3" |
|||
|
|||
# Core |
|||
|
|||
core_dl.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
if [ "$(type fn_fetch_core_dl 2> /dev/null)" ]; then |
|||
fn_fetch_core_dl "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
else |
|||
fn_bootstrap_fetch_file_github "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
fi |
|||
} |
|||
|
|||
core_messages.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
if [ "$(type fn_fetch_core_dl 2> /dev/null)" ]; then |
|||
fn_fetch_core_dl "lgsm/functions" "core_messages.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
else |
|||
fn_bootstrap_fetch_file_github "lgsm/functions" "core_messages.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
fi |
|||
} |
|||
|
|||
core_legacy.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
if [ "$(type fn_fetch_core_dl 2> /dev/null)" ]; then |
|||
fn_fetch_core_dl "lgsm/functions" "core_legacy.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
else |
|||
fn_bootstrap_fetch_file_github "lgsm/functions" "core_legacy.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
fi |
|||
} |
|||
|
|||
core_exit.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
core_getopt.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
core_trap.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
core_steamcmd.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
core_github.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Commands |
|||
|
|||
command_backup.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_console.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_debug.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_details.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_sponsor.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_postdetails.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_test_alert.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_monitor.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_start.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_stop.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_validate.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_install.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_install_resources_mta.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_squad_license.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_mods_install.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_mods_update.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_mods_remove.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_fastdl.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_ts3_server_pass.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_restart.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_skeleton.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_wipe.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_send.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Checks |
|||
|
|||
check.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_config.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_deps.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_executable.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_glibc.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_ip.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_last_update.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_logs.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_permissions.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_root.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_status.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_steamcmd.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_system_dir.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_system_requirements.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_tmuxception.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
check_version.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Compress |
|||
|
|||
compress_unreal2_maps.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
compress_ut99_maps.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Mods |
|||
|
|||
mods_list.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
mods_core.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Dev |
|||
|
|||
command_dev_clear_functions.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_dev_debug.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_dev_detect_deps.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_dev_detect_glibc.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_dev_detect_ldd.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_dev_query_raw.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Fix |
|||
|
|||
fix.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_ark.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_av.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_arma3.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_armar.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_bt.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_bo.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_cmw.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_csgo.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_dst.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_hw.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_ins.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_kf.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_kf2.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_lo.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_mcb.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_mta.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_nmrih.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_onset.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_ro.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_rust.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_rw.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_sfc.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_st.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_steamcmd.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_terraria.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_tf2.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_ut3.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_rust.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_samp.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_sdtd.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_sof2.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_squad.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_ts3.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_ut2k4.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_ut.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_unt.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_vh.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_wurm.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fix_zmr.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Info |
|||
|
|||
info_distro.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
info_game.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
info_messages.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
info_stats.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Alert |
|||
|
|||
alert.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_discord.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_email.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_ifttt.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_mailgun.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_pushbullet.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_pushover.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_gotify.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_telegram.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_rocketchat.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
alert_slack.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
# Logs |
|||
|
|||
core_logs.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Query |
|||
|
|||
query_gamedig.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Update |
|||
|
|||
command_update_functions.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_update_linuxgsm.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_update.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
command_check_update.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_ts3.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_mc.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_mcb.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_pmc.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_mta.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_fctr.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_jk2.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_steamcmd.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_vints.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
update_ut99.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
fn_update_functions.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# |
|||
## Installer functions |
|||
# |
|||
|
|||
fn_autoinstall() { |
|||
autoinstall=1 |
|||
command_install.sh |
|||
} |
|||
|
|||
install_complete.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_config.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_factorio_save.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_dst_token.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_eula.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_gsquery.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_gslt.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_header.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_logs.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_retry.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_server_dir.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
install_server_files.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_stats.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_steamcmd.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_ts3.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_ts3db.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_ut2k4.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_dl_ut2k4.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
install_ut2k4_key.sh() { |
|||
functionfile="${FUNCNAME[0]}" |
|||
fn_fetch_function |
|||
} |
|||
|
|||
# Calls code required for legacy servers |
|||
core_legacy.sh |
|||
|
|||
# Creates tmp dir if missing |
|||
if [ ! -d "${tmpdir}" ]; then |
|||
mkdir -p "${tmpdir}" |
|||
fi |
|||
|
|||
# Creates lock dir if missing |
|||
if [ ! -d "${lockdir}" ]; then |
|||
mkdir -p "${lockdir}" |
|||
fi |
|||
|
|||
# Calls on-screen messages (bootstrap) |
|||
core_messages.sh |
|||
|
|||
#Calls file downloader (bootstrap) |
|||
core_dl.sh |
|||
|
|||
# Calls the global Ctrl-C trap |
|||
core_trap.sh |
Loading…
Reference in new issue