gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
677 B
23 lines
677 B
#!/bin/bash
|
|
# LGSM core_exit.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
lgsm_version="210516"
|
|
|
|
# Description: handles exiting of LGSM by running and reporting an exit code.
|
|
|
|
if [ "${exitcode}" != "0" ]; then
|
|
if [ "${exitcode}" == "1" ]; then
|
|
fn_script_log_fatal "Exiting with exit code: ${exitcode}"
|
|
elif [ "${exitcode}" == "2" ]; then
|
|
fn_script_log_error "Exiting with exit code: ${exitcode}"
|
|
elif [ "${exitcode}" == "3" ]; then
|
|
fn_script_log_warn "Exiting with exit code: ${exitcode}"
|
|
else
|
|
fn_script_log "Exiting with exit code: ${exitcode}"
|
|
fi
|
|
else
|
|
fn_script_log_pass "Exiting with exit code: ${exitcode}"
|
|
fi
|
|
|
|
exit ${exitcode}
|