lgsm local mirror
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.
 
 

31 lines
1.0 KiB

#!/bin/bash
# LinuxGSM install_complete.sh module
# Author: Daniel Gibbs
# Contributors: https://linuxgsm.com/contrib
# Website: https://linuxgsm.com
# Description: Prints installation completion message and hints.
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo -e ""
if [ "${exitcode}" -eq 1 ]; then
echo -e "${bold}${red}Install Failed!${default}"
fn_script_log_fail "Install Failed!"
elif [ "${exitcode}" -eq 2 ]; then
echo -e "${bold}${red}Install Completed with Errors!${default}}"
fn_script_log_error "Install Completed with Errors!"
elif [ "${exitcode}" -eq 3 ]; then
echo -e "${bold}${lightyellow}Install Completed with Warnings!${default}}"
fn_script_log_warn "Install Completed with Warnings!"
elif [ -z "${exitcode}" ] || [ "${exitcode}" -eq 0 ]; then
echo -e "${bold}${green}Install Complete!${default}"
fn_script_log_pass "Install Complete!"
fi
fn_messages_separator
echo -e ""
echo -e "To start the ${gamename} server type:"
echo -e "${italic}./${selfname} start${default}"
echo -e ""
core_exit.sh