Browse Source

reset to default

feature/dst-changes
Daniel Gibbs 6 months ago
parent
commit
d5e24f4c08
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 80
      lgsm/modules/core_messages.sh
  2. 2
      lgsm/modules/core_steamcmd.sh

80
lgsm/modules/core_messages.sh

@ -141,30 +141,30 @@ fn_script_log_info() {
################################## ##################################
fn_print() { fn_print() {
echo -en "$*" echo -en "$*${default}"
fn_sleep_time fn_sleep_time
} }
fn_print_nl() { fn_print_nl() {
echo -e "$*" echo -e "$*${default}"
fn_sleep_time fn_sleep_time
} }
# [ .... ] # [ .... ]
fn_print_dots() { fn_print_dots() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[ .... ]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[ .... ]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[ .... ]${default} $*" echo -en "${bold}${creeol}[ .... ]${default} $*${default}"
fi fi
fn_sleep_time_05 fn_sleep_time_05
} }
fn_print_dots_nl() { fn_print_dots_nl() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -e "${bold}${creeol}[ .... ]${default} ${commandaction} ${selfname}: $*" echo -e "${bold}${creeol}[ .... ]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -e "${bold}${creeol}[ .... ]${default} $*" echo -e "${bold}${creeol}[ .... ]${default} $*${default}"
fi fi
fn_sleep_time_05 fn_sleep_time_05
echo -en "\n" echo -en "\n"
@ -173,18 +173,18 @@ fn_print_dots_nl() {
# [ OK ] # [ OK ]
fn_print_ok() { fn_print_ok() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${green} OK ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${green} OK ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${green} OK ${default}]${default} $*" echo -en "${bold}${creeol}[${green} OK ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
} }
fn_print_ok_nl() { fn_print_ok_nl() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${green} OK ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${green} OK ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${green} OK ${default}]${default} $*" echo -en "${bold}${creeol}[${green} OK ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
echo -en "\n" echo -en "\n"
@ -193,18 +193,18 @@ fn_print_ok_nl() {
# [ FAIL ] # [ FAIL ]
fn_print_fail() { fn_print_fail() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${red} FAIL ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${red} FAIL ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${red} FAIL ${default}]${default} $*" echo -en "${bold}${creeol}[${red} FAIL ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
} }
fn_print_fail_nl() { fn_print_fail_nl() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${red} FAIL ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${red} FAIL ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${red} FAIL ${default}]${default} $*" echo -en "${bold}${creeol}[${red} FAIL ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
echo -en "\n" echo -en "\n"
@ -213,18 +213,18 @@ fn_print_fail_nl() {
# [ ERROR ] # [ ERROR ]
fn_print_error() { fn_print_error() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${red} ERROR ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${red} ERROR ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${red} ERROR ${default}]${default} $*" echo -en "${bold}${creeol}[${red} ERROR ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
} }
fn_print_error_nl() { fn_print_error_nl() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${red} ERROR ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${red} ERROR ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${red} ERROR ${default}]${default} $*" echo -en "${bold}${creeol}[${red} ERROR ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
echo -en "\n" echo -en "\n"
@ -233,18 +233,18 @@ fn_print_error_nl() {
# [ WARN ] # [ WARN ]
fn_print_warn() { fn_print_warn() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${lightyellow} WARN ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${lightyellow} WARN ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${lightyellow} WARN ${default}]${default} $*" echo -en "${bold}${creeol}[${lightyellow} WARN ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
} }
fn_print_warn_nl() { fn_print_warn_nl() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${lightyellow} WARN ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${lightyellow} WARN ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${lightyellow} WARN ${default}]${default} $*" echo -en "${bold}${creeol}[${lightyellow} WARN ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
echo -en "\n" echo -en "\n"
@ -253,18 +253,18 @@ fn_print_warn_nl() {
# [ INFO ] # [ INFO ]
fn_print_info() { fn_print_info() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${cyan} INFO ${default}] ${commandaction} ${selfname}:${default} $*" echo -en "${bold}${creeol}[${cyan} INFO ${default}] ${commandaction} ${selfname}:${default} $*${default}"
else else
echo -en "${bold}${creeol}[${cyan} INFO ${default}]${default} $*" echo -en "${bold}${creeol}[${cyan} INFO ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
} }
fn_print_info_nl() { fn_print_info_nl() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${cyan} INFO ${default}] ${commandaction} ${selfname}:${default} $*" echo -en "${bold}${creeol}[${cyan} INFO ${default}] ${commandaction} ${selfname}:${default} $*${default}"
else else
echo -en "${bold}${creeol}[${cyan} INFO ${default}]${default} $*" echo -en "${bold}${creeol}[${cyan} INFO ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
echo -en "\n" echo -en "\n"
@ -273,18 +273,18 @@ fn_print_info_nl() {
# [ START ] # [ START ]
fn_print_start() { fn_print_start() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${lightgreen} START ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${lightgreen} START ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${lightgreen} START ${default}]${default} $*" echo -en "${bold}${creeol}[${lightgreen} START ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
} }
fn_print_start_nl() { fn_print_start_nl() {
if [ "${commandaction}" ]; then if [ "${commandaction}" ]; then
echo -en "${bold}${creeol}[${lightgreen} START ${default}]${default} ${commandaction} ${selfname}: $*" echo -en "${bold}${creeol}[${lightgreen} START ${default}]${default} ${commandaction} ${selfname}: $*${default}"
else else
echo -en "${bold}${creeol}[${lightgreen} START ${default}]${default} $*" echo -en "${bold}${creeol}[${lightgreen} START ${default}]${default} $*${default}"
fi fi
fn_sleep_time fn_sleep_time
echo -en "\n" echo -en "\n"
@ -313,56 +313,56 @@ fn_print_header() {
# Complete! # Complete!
fn_print_complete() { fn_print_complete() {
echo -en "${green}Complete!${default} $*" echo -en "${green}Complete!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
fn_print_complete_nl() { fn_print_complete_nl() {
echo -e "${green}Complete!${default} $*" echo -e "${green}Complete!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
# Failure! # Failure!
fn_print_failure() { fn_print_failure() {
echo -en "${red}Failure!${default} $*" echo -en "${red}Failure!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
fn_print_failure_nl() { fn_print_failure_nl() {
echo -e "${red}Failure!${default} $*" echo -e "${red}Failure!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
# Error! # Error!
fn_print_error2() { fn_print_error2() {
echo -en "${red}Error!${default} $*" echo -en "${red}Error!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
fn_print_error2_nl() { fn_print_error2_nl() {
echo -e "${red}Error!${default} $*" echo -e "${red}Error!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
# Warning! # Warning!
fn_print_warning() { fn_print_warning() {
echo -en "${lightyellow}Warning!${default} $*" echo -en "${lightyellow}Warning!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
fn_print_warning_nl() { fn_print_warning_nl() {
echo -e "${lightyellow}Warning!${default} $*" echo -e "${lightyellow}Warning!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
# Information! # Information!
fn_print_information() { fn_print_information() {
echo -en "${cyan}Information!${default} $*" echo -en "${cyan}Information!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }
fn_print_information_nl() { fn_print_information_nl() {
echo -e "${cyan}Information!${default} $*" echo -e "${cyan}Information!${default} $*${default}"
fn_sleep_time fn_sleep_time
} }

2
lgsm/modules/core_steamcmd.sh

@ -265,7 +265,7 @@ fn_update_steamcmd_compare() {
else else
fn_print_ok_nl "Checking for update: ${remotelocation}" fn_print_ok_nl "Checking for update: ${remotelocation}"
echo -en "\n" echo -en "\n"
echo -e "No update available" echo -e "${bold}No ${underline}update${default} available${default}"
echo -e "* Local build: ${green}${localbuild}${default}" echo -e "* Local build: ${green}${localbuild}${default}"
echo -e "* Remote build: ${green}${remotebuildversion}${default}" echo -e "* Remote build: ${green}${remotebuildversion}${default}"
if [ -n "${branch}" ]; then if [ -n "${branch}" ]; then

Loading…
Cancel
Save