Browse Source

fix incorrect var name

feature/dst-changes
Daniel Gibbs 4 months ago
parent
commit
b80be900b4
  1. 2
      lgsm/modules/alert_email.sh
  2. 2
      lgsm/modules/alert_gotify.sh
  3. 2
      lgsm/modules/check_gamedig.sh
  4. 2
      lgsm/modules/fix_bt.sh
  5. 2
      lgsm/modules/update_pmc.sh
  6. 2
      lgsm/modules/update_ut99.sh
  7. 2
      lgsm/modules/update_xnt.sh

2
lgsm/modules/alert_email.sh

@ -15,7 +15,7 @@ else
mail -s "${alerttitle}" "${email}" < "${alertlog}"
fi
exitcode=$?
if [ "${exitcode}" -qe 0 ]; then
if [ "${exitcode}" -ne 0 ]; then
fn_print_ok_nl "Sending Email alert: ${email}"
fn_script_log_pass "Sending Email alert: ${email}"
else

2
lgsm/modules/alert_gotify.sh

@ -5,7 +5,7 @@
# Website: https://linuxgsm.com
# Description: Sends Gotify alert.
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
jsoninfo=$(
cat << EOF

2
lgsm/modules/check_gamedig.sh

@ -5,6 +5,8 @@
# Website: https://linuxgsm.com
# Description: Installs nodejs and gamedig
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
if [ "$(command -v node)" ] && [ "$(command -v npm)" ] && [ "$(node -v | cut -d 'v' -f 2 | cut -d '.' -f 1)" -ge 16 ] && [ ! -f "${lgsmdir}/node_modules/gamedig/bin/gamedig.js" ]; then
echo -e ""
echo -e "${bold}${lightyellow}Installing Gamedig${default}"

2
lgsm/modules/fix_bt.sh

@ -5,7 +5,7 @@
# Website: https://linuxgsm.com
# Description: Resolves issues with Barotrauma.
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Fixes: Missing user data directory error.
if [ ! -d "${XDG_DATA_HOME:="${HOME}/.local/share"}/Daedalic Entertainment GmbH/Barotrauma" ]; then

2
lgsm/modules/update_pmc.sh

@ -5,7 +5,7 @@
# Website: https://linuxgsm.com
# Description: Handles updating of PaperMC and Waterfall servers.
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_update_dl() {
# Download and extract files to serverfiles.

2
lgsm/modules/update_ut99.sh

@ -5,7 +5,7 @@
# Website: https://linuxgsm.com
# Description: Handles updating of Unreal Tournament 99 servers.
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_update_dl() {
# Download and extract files to serverfiles.

2
lgsm/modules/update_xnt.sh

@ -5,7 +5,7 @@
# Website: https://linuxgsm.com
# Description: Handles updating of Unreal Tournament 99 servers.
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_update_dl() {
# Download and extract files to serverfiles.

Loading…
Cancel
Save