79 changed files with 3909 additions and 2647 deletions
@ -0,0 +1,74 @@ |
|||
name: Details Check |
|||
# This action will check that LinuxGSM is picking up game server config and parameter variables. |
|||
on: |
|||
workflow_dispatch: |
|||
push: |
|||
|
|||
jobs: |
|||
create-matrix: |
|||
runs-on: ubuntu-latest |
|||
outputs: |
|||
matrix: ${{ steps.set-matrix.outputs.matrix }} |
|||
steps: |
|||
- name: Checkout |
|||
uses: actions/checkout@v3 |
|||
|
|||
- name: Generate matrix with generate-matrix.sh |
|||
run: chmod +x .github/workflows/detals-check-generate-matrix.sh; .github/workflows/detals-check-generate-matrix.sh |
|||
|
|||
- id: set-matrix |
|||
run: | |
|||
shortnamearray=$(cat shortnamearray.json) |
|||
echo "${shortnamearray}" |
|||
echo -n "matrix=${shortnamearray}" >> $GITHUB_OUTPUT |
|||
|
|||
details-check: |
|||
needs: create-matrix |
|||
continue-on-error: true |
|||
runs-on: ubuntu-latest |
|||
|
|||
strategy: |
|||
matrix: ${{ fromJSON(needs.create-matrix.outputs.matrix) }} |
|||
|
|||
steps: |
|||
- name: Install dependencies |
|||
run: sudo apt-get install libxml2-utils jq |
|||
|
|||
- name: Download linuxgsm.sh |
|||
run: wget https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/feature/info_game-refactor/linuxgsm.sh; chmod +x linuxgsm.sh |
|||
|
|||
- name: Grab server |
|||
run: LGSM_GITHUBBRANCH="feature/info_game-refactor" ./linuxgsm.sh ${{ matrix.shortname }}server |
|||
|
|||
- name: Enable developer mode |
|||
run: LGSM_GITHUBBRANCH="feature/info_game-refactor" ./${{ matrix.shortname }}server developer |
|||
|
|||
- id: sets-servercfgname |
|||
name: Generate servercfgname |
|||
run: | |
|||
servercfg=$(sed -n "/^\<servercfgdefault\>/ { s/.*= *\"\?\([^\"']*\)\"\?/\1/p;q }" lgsm/config-lgsm/${{ matrix.shortname }}server/_default.cfg) |
|||
echo "servercfgname=$servercfg" >> "$GITHUB_OUTPUT" |
|||
|
|||
- name: Download config |
|||
run: | |
|||
if [ -z "${{ steps.sets-servercfgname.outputs.servercfgname }}" ]; then |
|||
echo "This game server has no config file." |
|||
else |
|||
curl -f -o config "https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/rename/${{ matrix.shortname }}/${{ steps.sets-servercfgname.outputs.servercfgname }}" |
|||
fi |
|||
- name: Display config |
|||
run: | |
|||
if [ -z "${{ steps.sets-servercfgname.outputs.servercfgname }}" ]; then |
|||
echo "This game server has no config file." |
|||
else |
|||
cat config |
|||
fi |
|||
|
|||
- name: Display parameters |
|||
run: grep "startparameters" lgsm/config-default/config-lgsm/${{ matrix.shortname }}server/_default.cfg |
|||
|
|||
- name: Detect details |
|||
run: LGSM_GITHUBBRANCH="feature/info_game-refactor" ./${{ matrix.shortname }}server detect-details |
|||
|
|||
- name: Query Raw |
|||
run: LGSM_GITHUBBRANCH="feature/info_game-refactor" ./${{ matrix.shortname }}server query-raw |
@ -0,0 +1,25 @@ |
|||
#!/bin/bash |
|||
|
|||
curl "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/lgsm/data/serverlist.csv" | grep -v '^[[:blank:]]*$' > serverlist.csv |
|||
|
|||
echo -n "{" > "shortnamearray.json" |
|||
echo -n "\"include\":[" >> "shortnamearray.json" |
|||
|
|||
while read -r line; do |
|||
shortname=$(echo "$line" | awk -F, '{ print $1 }') |
|||
export shortname |
|||
servername=$(echo "$line" | awk -F, '{ print $2 }') |
|||
export servername |
|||
gamename=$(echo "$line" | awk -F, '{ print $3 }') |
|||
export gamename |
|||
distro=$(echo "$line" | awk -F, '{ print $4 }') |
|||
export distro |
|||
echo -n "{" >> "shortnamearray.json" |
|||
echo -n "\"shortname\":" >> "shortnamearray.json" |
|||
echo -n "\"${shortname}\"" >> "shortnamearray.json" |
|||
echo -n "}," >> "shortnamearray.json" |
|||
done < serverlist.csv |
|||
sed -i '$ s/.$//' "shortnamearray.json" |
|||
echo -n "]" >> "shortnamearray.json" |
|||
echo -n "}" >> "shortnamearray.json" |
|||
rm serverlist.csv |
@ -1,3 +1,3 @@ |
|||
{ |
|||
"plugins": ["prettier-plugin-sh"] |
|||
"plugins": ["prettier-plugin-sh"] |
|||
} |
|||
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 7.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
@ -0,0 +1,26 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM check_logs.sh module |
|||
# Author: Daniel Gibbs |
|||
# Contributors: http://linuxgsm.com/contrib |
|||
# Website: https://linuxgsm.com |
|||
# Description: Checks if log files exist. |
|||
|
|||
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|||
|
|||
fn_check_logs() { |
|||
fn_print_dots "Checking for log files" |
|||
fn_print_info_nl "Checking for log files: Creating log files" |
|||
checklogs=1 |
|||
install_logs.sh |
|||
} |
|||
|
|||
# Create directories for the script and console logs. |
|||
if [ ! -d "${lgsmlogdir}" ] || [ ! -d "${consolelogdir}" ]; then |
|||
fn_check_logs |
|||
fi |
|||
|
|||
# Create gamelogdir. |
|||
# If variable exists gamelogdir exists and log/server does not. |
|||
if [ "${gamelogdir}" ] && [ -d "${gamelogdir}" ] && [ ! -d "${logdir}/server" ]; then |
|||
fn_check_logs |
|||
fi |
@ -0,0 +1,21 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM check_root.sh module |
|||
# Author: Daniel Gibbs |
|||
# Contributors: http://linuxgsm.com/contrib |
|||
# Website: https://linuxgsm.com |
|||
# Description: Checks if the user tried to run the script as root. |
|||
|
|||
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|||
|
|||
if [ "$(whoami)" == "root" ] && [ ! -f /.dockerenv ]; then |
|||
if [ "${commandname}" != "INSTALL" ]; then |
|||
fn_print_fail_nl "Do NOT run this script as root!" |
|||
if [ -d "${lgsmlogdir}" ]; then |
|||
fn_script_log_fatal "${selfname} attempted to run as root." |
|||
else |
|||
# Forces exit code is log does not yet exist. |
|||
exitcode=1 |
|||
fi |
|||
core_exit.sh |
|||
fi |
|||
fi |
@ -0,0 +1,236 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM command_update_linuxgsm.sh module |
|||
# Author: Daniel Gibbs |
|||
# Contributors: http://linuxgsm.com/contrib |
|||
# Website: https://linuxgsm.com |
|||
# Description: Deletes the modules dir to allow re-downloading of modules from GitHub. |
|||
|
|||
commandname="UPDATE-LGSM" |
|||
commandaction="Updating LinuxGSM" |
|||
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|||
fn_firstcommand_set |
|||
|
|||
check.sh |
|||
info_distro.sh |
|||
|
|||
fn_print_dots "" |
|||
fn_script_log_info "Updating LinuxGSM" |
|||
|
|||
fn_print_dots "Selecting repo" |
|||
fn_script_log_info "Selecting repo" |
|||
# Select remotereponame |
|||
curl --connect-timeout 10 -IsfL "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/linuxgsm.sh" 1> /dev/null |
|||
if [ $? != "0" ]; then |
|||
curl --connect-timeout 10 -IsfL "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/linuxgsm.sh" 1> /dev/null |
|||
if [ $? != "0" ]; then |
|||
fn_print_fail_nl "Selecting repo: Unable to to access GitHub or Bitbucket repositories" |
|||
fn_script_log_fatal "Selecting repo: Unable to to access GitHub or Bitbucket repositories" |
|||
core_exit.sh |
|||
else |
|||
remotereponame="Bitbucket" |
|||
fn_print_ok_nl "Selecting repo: ${remotereponame}" |
|||
fi |
|||
else |
|||
remotereponame="GitHub" |
|||
fn_print_ok_nl "Selecting repo: ${remotereponame}" |
|||
fi |
|||
|
|||
# Check linuxsm.sh |
|||
echo -en "checking ${remotereponame} linuxgsm.sh...\c" |
|||
if [ "${remotereponame}" == "GitHub" ]; then |
|||
curl --connect-timeout 10 -IsfL "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/linuxgsm.sh" 1> /dev/null |
|||
else |
|||
curl --connect-timeout 10 -IsfL "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/linuxgsm.sh" 1> /dev/null |
|||
fi |
|||
if [ $? != "0" ]; then |
|||
fn_print_fail_eol_nl |
|||
fn_script_log_fatal "Checking ${remotereponame} linuxgsm.sh" |
|||
fn_script_log_fatal "Curl returned error: $?" |
|||
core_exit.sh |
|||
fi |
|||
|
|||
if [ "${remotereponame}" == "GitHub" ]; then |
|||
tmp_script_diff=$(diff "${tmpdir}/linuxgsm.sh" <(curl --connect-timeout 10 -s "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/linuxgsm.sh")) |
|||
else |
|||
tmp_script_diff=$(diff "${tmpdir}/linuxgsm.sh" <(curl --connect-timeout 10 -s "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/linuxgsm.sh")) |
|||
fi |
|||
|
|||
if [ "${tmp_script_diff}" != "" ]; then |
|||
fn_print_update_eol_nl |
|||
fn_script_log_update "Checking ${remotereponame} linuxgsm.sh" |
|||
rm -f "${tmpdir:?}/linuxgsm.sh" |
|||
fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "nochmodx" "norun" "noforcedl" "nohash" |
|||
else |
|||
fn_print_ok_eol_nl |
|||
fn_script_log_pass "Checking ${remotereponame} linuxgsm.sh" |
|||
fi |
|||
|
|||
# Check gameserver.sh |
|||
# Compare gameserver.sh against linuxgsm.sh in the tmp dir. |
|||
# Ignoring server specific vars. |
|||
echo -en "checking ${selfname}...\c" |
|||
fn_script_log_info "Checking ${selfname}" |
|||
script_diff=$(diff <(sed '\/shortname/d;\/gameservername/d;\/gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '\/shortname/d;\/gameservername/d;\/gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${rootdir}/${selfname}")) |
|||
if [ "${script_diff}" != "" ]; then |
|||
fn_print_update_eol_nl |
|||
fn_script_log_update "Checking ${selfname}" |
|||
echo -en "backup ${selfname}...\c" |
|||
fn_script_log_info "Backup ${selfname}" |
|||
if [ ! -d "${backupdir}/script" ]; then |
|||
mkdir -p "${backupdir}/script" |
|||
fi |
|||
cp "${rootdir}/${selfname}" "${backupdir}/script/${selfname}-$(date +"%m_%d_%Y_%M").bak" |
|||
if [ $? != 0 ]; then |
|||
fn_print_fail_eol_nl |
|||
fn_script_log_fatal "Backup ${selfname}" |
|||
core_exit.sh |
|||
else |
|||
fn_print_ok_eol_nl |
|||
fn_script_log_pass "Backup ${selfname}" |
|||
echo -e "backup location ${backupdir}/script/${selfname}-$(date +"%m_%d_%Y_%M").bak" |
|||
fn_script_log_pass "Backup location ${backupdir}/script/${selfname}-$(date +"%m_%d_%Y_%M").bak" |
|||
fi |
|||
|
|||
echo -en "copying ${selfname}...\c" |
|||
fn_script_log_info "copying ${selfname}" |
|||
cp "${tmpdir}/linuxgsm.sh" "${rootdir}/${selfname}" |
|||
sed -i "s+shortname=\"core\"+shortname=\"${shortname}\"+g" "${rootdir}/${selfname}" |
|||
sed -i "s+gameservername=\"core\"+gameservername=\"${gameservername}\"+g" "${rootdir}/${selfname}" |
|||
sed -i "s+gamename=\"core\"+gamename=\"${gamename}\"+g" "${rootdir}/${selfname}" |
|||
sed -i "s+githubuser=\"GameServerManagers\"+githubuser=\"${githubuser}\"+g" "${rootdir}/${selfname}" |
|||
sed -i "s+githubrepo=\"LinuxGSM\"+githubrepo=\"${githubrepo}\"+g" "${rootdir}/${selfname}" |
|||
sed -i "s+githubbranch=\"master\"+githubbranch=\"${githubbranch}\"+g" "${rootdir}/${selfname}" |
|||
|
|||
if [ $? != "0" ]; then |
|||
fn_print_fail_eol_nl |
|||
fn_script_log_fatal "copying ${selfname}" |
|||
core_exit.sh |
|||
else |
|||
fn_print_ok_eol_nl |
|||
fn_script_log_pass "copying ${selfname}" |
|||
fi |
|||
else |
|||
fn_print_ok_eol_nl |
|||
fn_script_log_info "Checking ${selfname}" |
|||
fi |
|||
|
|||
# Check _default.cfg. |
|||
echo -en "checking ${remotereponame} config _default.cfg...\c" |
|||
fn_script_log_info "Checking ${remotereponame} config _default.cfg" |
|||
if [ "${remotereponame}" == "GitHub" ]; then |
|||
curl --connect-timeout 10 -IsfL "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/config-default/config-lgsm/${gameservername}/_default.cfg" 1> /dev/null |
|||
else |
|||
curl --connect-timeout 10 -IsfL "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/lgsm/config-default/config-lgsm/${gameservername}/_default.cfg" 1> /dev/null |
|||
fi |
|||
if [ $? != "0" ]; then |
|||
fn_print_fail_eol_nl |
|||
fn_script_log_fatal "Checking ${remotereponame} config _default.cfg" |
|||
fn_script_log_fatal "Curl returned error: $?" |
|||
core_exit.sh |
|||
fi |
|||
|
|||
if [ "${remotereponame}" == "GitHub" ]; then |
|||
config_file_diff=$(diff "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" <(curl --connect-timeout 10 -s "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/config-default/config-lgsm/${gameservername}/_default.cfg")) |
|||
else |
|||
config_file_diff=$(diff "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" <(curl --connect-timeout 10 -s "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/lgsm/config-default/config-lgsm/${gameservername}/_default.cfg")) |
|||
fi |
|||
|
|||
if [ "${config_file_diff}" != "" ]; then |
|||
fn_print_update_eol_nl |
|||
fn_script_log_update "Checking ${remotereponame} config _default.cfg" |
|||
rm -f "${configdirdefault:?}/config-lgsm/${gameservername:?}/_default.cfg" |
|||
fn_fetch_file_github "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "nochmodx" "norun" "noforce" "nohash" |
|||
alert="config" |
|||
alert.sh |
|||
else |
|||
fn_print_ok_eol_nl |
|||
fn_script_log_pass "Checking ${remotereponame} config _default.cfg" |
|||
fi |
|||
|
|||
# Check distro csv. ${datadir}/${distroid}-${distroversioncsv}.csv |
|||
if [ -f "${datadir}/${distroid}-${distroversioncsv}.csv" ]; then |
|||
echo -en "checking ${remotereponame} config ${distroid}-${distroversioncsv}.csv...\c" |
|||
fn_script_log_info "Checking ${remotereponame} ${distroid}-${distroversioncsv}.csv" |
|||
if [ "${remotereponame}" == "GitHub" ]; then |
|||
curl --connect-timeout 10 -IsfL "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/${distroid}-${distroversioncsv}.csv" 1> /dev/null |
|||
else |
|||
curl --connect-timeout 10 -IsfL "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/lgsm/data/${distroid}-${distroversioncsv}.csv" 1> /dev/null |
|||
fi |
|||
if [ $? != "0" ]; then |
|||
fn_print_fail_eol_nl |
|||
fn_script_log_fatal "Checking ${remotereponame} ${distroid}-${distroversioncsv}.csv" |
|||
fn_script_log_fatal "Curl returned error: $?" |
|||
core_exit.sh |
|||
fi |
|||
|
|||
if [ "${remotereponame}" == "GitHub" ]; then |
|||
config_file_diff=$(diff "${datadir}/${distroid}-${distroversioncsv}.csv" <(curl --connect-timeout 10 -s "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/${distroid}-${distroversioncsv}.csv")) |
|||
else |
|||
config_file_diff=$(diff "${datadir}/${distroid}-${distroversioncsv}.csv" <(curl --connect-timeout 10 -s "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/lgsm/data/${distroid}-${distroversioncsv}.csv")) |
|||
fi |
|||
|
|||
if [ "${config_file_diff}" != "" ]; then |
|||
fn_print_update_eol_nl |
|||
fn_script_log_update "Checking ${remotereponame} ${distroid}-${distroversioncsv}.csv" |
|||
rm -f "${datadir:?}/${distroid}-${distroversioncsv}.csv" |
|||
fn_fetch_file_github "lgsm/data" "${distroid}-${distroversioncsv}.csv" "${datadir}" "nochmodx" "norun" "noforce" "nohash" |
|||
else |
|||
fn_print_ok_eol_nl |
|||
fn_script_log_pass "Checking ${remotereponame} ${distroid}-${distroversioncsv}.csv" |
|||
fi |
|||
fi |
|||
# Check and update modules. |
|||
if [ -n "${modulesdir}" ]; then |
|||
if [ -d "${modulesdir}" ]; then |
|||
( |
|||
cd "${modulesdir}" || exit |
|||
for modulefile in *; do |
|||
# check if module exists in the repo and remove if missing. |
|||
# commonly used if module names change. |
|||
echo -en "checking ${remotereponame} module ${modulefile}...\c" |
|||
github_file_url_dir="lgsm/modules" |
|||
if [ "${remotereponame}" == "GitHub" ]; then |
|||
curl --connect-timeout 10 -IsfL "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${modulefile}" 1> /dev/null |
|||
else |
|||
curl --connect-timeout 10 -IsfL "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/${github_file_url_dir}/${modulefile}" 1> /dev/null |
|||
fi |
|||
if [ $? != 0 ]; then |
|||
fn_print_error_eol_nl |
|||
fn_script_log_error "Checking ${remotereponame} module ${modulefile}" |
|||
echo -en "removing module ${modulefile}...\c" |
|||
if ! rm -f "${modulefile:?}"; then |
|||
fn_print_fail_eol_nl |
|||
fn_script_log_fatal "Removing module ${modulefile}" |
|||
core_exit.sh |
|||
else |
|||
fn_print_ok_eol_nl |
|||
fn_script_log_pass "Removing module ${modulefile}" |
|||
fi |
|||
else |
|||
# compare file |
|||
if [ "${remotereponame}" == "GitHub" ]; then |
|||
module_file_diff=$(diff "${modulesdir}/${modulefile}" <(curl --connect-timeout 10 -s "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${modulefile}")) |
|||
else |
|||
module_file_diff=$(diff "${modulesdir}/${modulefile}" <(curl --connect-timeout 10 -s "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/${github_file_url_dir}/${modulefile}")) |
|||
fi |
|||
|
|||
# results |
|||
if [ "${module_file_diff}" != "" ]; then |
|||
fn_print_update_eol_nl |
|||
fn_script_log_update "Checking ${remotereponame} module ${modulefile}" |
|||
rm -rf "${modulesdir:?}/${modulefile}" |
|||
fn_update_module |
|||
else |
|||
fn_print_ok_eol_nl |
|||
fn_script_log_pass "Checking ${remotereponame} module ${modulefile}" |
|||
fi |
|||
fi |
|||
done |
|||
) |
|||
fi |
|||
fi |
|||
|
|||
fn_print_ok_nl "Updating modules" |
|||
fn_script_log_pass "Updating modules" |
|||
|
|||
core_exit.sh |
@ -0,0 +1,816 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM core_modules.sh module |
|||
# Author: Daniel Gibbs |
|||
# Contributors: http://linuxgsm.com/contrib |
|||
# Website: https://linuxgsm.com |
|||
# Description: Defines all modules to allow download and execution of modules using fn_fetch_module. |
|||
# This module is called first before any other module. Without this file other modules will not load. |
|||
|
|||
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|||
|
|||
modulesversion="v23.2.0" |
|||
|
|||
# Core |
|||
|
|||
core_dl.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
if [ "$(type fn_fetch_core_dl 2> /dev/null)" ]; then |
|||
fn_fetch_core_dl "lgsm/modules" "core_dl.sh" "${modulesdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
else |
|||
fn_bootstrap_fetch_file_github "lgsm/modules" "core_dl.sh" "${modulesdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
fi |
|||
} |
|||
|
|||
core_messages.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
if [ "$(type fn_fetch_core_dl 2> /dev/null)" ]; then |
|||
fn_fetch_core_dl "lgsm/modules" "core_messages.sh" "${modulesdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
else |
|||
fn_bootstrap_fetch_file_github "lgsm/modules" "core_messages.sh" "${modulesdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
fi |
|||
} |
|||
|
|||
core_legacy.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
if [ "$(type fn_fetch_core_dl 2> /dev/null)" ]; then |
|||
fn_fetch_core_dl "lgsm/modules" "core_legacy.sh" "${modulesdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
else |
|||
fn_bootstrap_fetch_file_github "lgsm/modules" "core_legacy.sh" "${modulesdir}" "chmodx" "run" "noforcedl" "nohash" |
|||
fi |
|||
} |
|||
|
|||
core_exit.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
core_getopt.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
core_trap.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
core_steamcmd.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
core_github.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Commands |
|||
|
|||
command_backup.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_console.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_debug.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_details.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_sponsor.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_postdetails.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_test_alert.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_monitor.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_start.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_stop.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_validate.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_install.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_install_resources_mta.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_squad_license.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_mods_install.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_mods_update.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_mods_remove.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_fastdl.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_ts3_server_pass.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_restart.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_skeleton.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_wipe.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_send.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Checks |
|||
|
|||
check.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_config.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_deps.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_executable.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_glibc.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_ip.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_last_update.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_logs.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_permissions.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_root.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_status.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_steamcmd.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_system_dir.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_system_requirements.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_tmuxception.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
check_version.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Compress |
|||
|
|||
compress_unreal2_maps.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
compress_ut99_maps.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Mods |
|||
|
|||
mods_list.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
mods_core.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Dev |
|||
|
|||
command_dev_clear_modules.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_dev_debug.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_dev_detect_deps.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_dev_detect_glibc.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_dev_detect_ldd.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_dev_query_raw.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Fix |
|||
|
|||
fix.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_ark.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_av.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_arma3.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_armar.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_bt.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_bo.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_cmw.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_csgo.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_dst.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_hw.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_ins.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_kf.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_kf2.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_lo.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_mcb.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_mta.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_nmrih.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_onset.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_ro.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_rust.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_rw.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_sfc.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_st.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_steamcmd.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_terraria.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_tf2.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_ut3.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_rust.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_samp.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_sdtd.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_sof2.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_squad.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_ts3.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_ut2k4.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_ut.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_unt.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_vh.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_wurm.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fix_zmr.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Info |
|||
|
|||
info_distro.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
info_game.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
info_messages.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
info_stats.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Alert |
|||
|
|||
alert.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_discord.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_email.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_ifttt.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_mailgun.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_pushbullet.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_pushover.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_gotify.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_telegram.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_rocketchat.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
alert_slack.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
# Logs |
|||
|
|||
core_logs.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Query |
|||
|
|||
query_gamedig.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# Update |
|||
|
|||
command_update_modules.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_update_linuxgsm.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_update.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
command_check_update.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_ts3.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_minecraft.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_minecraft_bedrock.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_papermc.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_mta.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_factorio.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_jediknight2.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_steamcmd.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_vintagestory.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
update_ut99.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
fn_update_modules.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# |
|||
## Installer modules |
|||
# |
|||
|
|||
fn_autoinstall() { |
|||
autoinstall=1 |
|||
command_install.sh |
|||
} |
|||
|
|||
install_complete.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_config.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_factorio_save.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_dst_token.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_eula.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_gsquery.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_gslt.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_header.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_logs.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_retry.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_server_dir.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
install_server_files.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_stats.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_steamcmd.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_ts3.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_ts3db.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_ut2k4.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_dl_ut2k4.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
install_ut2k4_key.sh() { |
|||
modulefile="${FUNCNAME[0]}" |
|||
fn_fetch_module |
|||
} |
|||
|
|||
# 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 |
@ -0,0 +1,94 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM command_dev_debug.sh module |
|||
# Author: Daniel Gibbs |
|||
# Contributors: http://linuxgsm.com/contrib |
|||
# Website: https://linuxgsm.com |
|||
# Description: Dev only: Enables debugging log to be saved to dev-debug.log. |
|||
|
|||
if [ -f "config" ]; then |
|||
servercfgfullpath="config" |
|||
fi |
|||
if [ -f "clusterconfig" ]; then |
|||
clustercfgfullpath="clusterconfig" |
|||
fi |
|||
|
|||
info_game.sh |
|||
|
|||
carriagereturn=$(file -b "${servercfgfullpath}" | grep -q CRLF && echo "${red}CRLF${default}" || echo "${lightgreen}LF${default}") |
|||
|
|||
echo -e "" |
|||
echo -e "${lightgreen}Server Details${default}" |
|||
echo -e "==================================================================" |
|||
echo -e "" |
|||
|
|||
echo -e "Game: ${gamename}" |
|||
echo -e "Config type: ${configtype}" |
|||
echo -e "Config file: ${servercfgfullpath}" |
|||
if [ -f "${clustercfgfullpath}" ]; then |
|||
echo -e "Cluster config file: ${clustercfgfullpath}" |
|||
fi |
|||
echo -e "Carriage Return: ${carriagereturn}" |
|||
|
|||
# Create an associative array of the server details. |
|||
declare -A server_details=( |
|||
['Admin Password']="${adminpassword}" |
|||
['API Port']="${apiport}" |
|||
['Cave']="${cave}" |
|||
['Cluster']="${cluster}" |
|||
['Config IP']="${configip}" |
|||
['Default Map']="${defaultmap}" |
|||
['Game Mode']="${gamemode}" |
|||
['Game Type']="${gametype}" |
|||
['HTTP Enabled']="${httpenabled}" |
|||
['HTTP IP']="${httpip}" |
|||
['HTTP Password']="${httppassword}" |
|||
['HTTP Port']="${httpport}" |
|||
['HTTP User']="${httpuser}" |
|||
['ip']="${ip}" |
|||
['LAN Port']="${lanport}" |
|||
['Master Port']="${masterport}" |
|||
['Master']="${master}" |
|||
['Maxplayers']="${maxplayers}" |
|||
['OldQueryPortNumber']="${oldqueryportnumber}" |
|||
['Port']="${port}" |
|||
['Query Port']="${queryport}" |
|||
['RCON Enabled']="${rconenabled}" |
|||
['RCON Password']="${rconpassword}" |
|||
['RCON Port']="${rconport}" |
|||
['Reserved Slots']="${reservedslots}" |
|||
['Server Password']="${serverpassword}" |
|||
['Servername']="${servername}" |
|||
['Shard']="${shard}" |
|||
['Sharding']="${sharding}" |
|||
['Steam Auth Port']="${steamauthport}" |
|||
['Telnet IP']="${telnetip}" |
|||
['Tickrate']="${tickrate}" |
|||
['World Name']="${worldname}" |
|||
['World Type']="${worldtype}" |
|||
) |
|||
|
|||
# Initialize a variable to keep track of missing server details. |
|||
missing_details="" |
|||
|
|||
# Loop through the server details and output them. |
|||
echo -e "" |
|||
echo -e "${lightgreen}Available Server Details${default}" |
|||
echo -e "=================================" |
|||
for key in "${!server_details[@]}"; do |
|||
value=${server_details[$key]} |
|||
if [ -z "$value" ]; then |
|||
missing_details+="\n${key}" |
|||
else |
|||
echo -e "$key: $value " |
|||
fi |
|||
done |
|||
|
|||
# Output the missing server details if there are any. |
|||
if [ -n "$missing_details" ]; then |
|||
echo -e "" |
|||
echo -e "${lightgreen}Missing Server Details${default}" |
|||
echo -e "=================================" |
|||
echo -e "${missing_details}" |
|||
fi |
|||
|
|||
core_exit.sh |
File diff suppressed because it is too large
Loading…
Reference in new issue