Browse Source

messages

pull/914/head
Daniel Gibbs 9 years ago
parent
commit
6fba694b97
  1. 2
      lgsm/functions/check_ip.sh
  2. 8
      lgsm/functions/core_messages.sh

2
lgsm/functions/check_ip.sh

@ -20,7 +20,7 @@ if [ "${gamename}" != "Teamspeak 3" ]; then
if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then
if [ "${getipwc}" -ge "2" ]; then
fn_print_fail "Multiple active network interfaces found.\n\n"
echo -en "Manually specify the IP you want to use within the ${selfname} script.\n"
fn_print_infomation "Specify the IP you want to use within the ${selfname} script.\n"
echo -en "Set ip=\"0.0.0.0\" to one of the following:\n"
echo -en "${getip}\n"
echo -en ""

8
lgsm/functions/core_messages.sh

@ -142,17 +142,17 @@ fn_print_fail_nl(){
# [ ERROR ]
fn_print_error(){
if [ -n "${commandaction}" ]; then
echo -en "\r[${red} ERROR${default}] ${commandaction} ${servicename}: $@"
echo -en "\r[${red}ERROR ${default}] ${commandaction} ${servicename}: $@"
else
echo -en "\r[${red} ERROR${default}] $@"
echo -en "\r[${red}ERROR ${default}] $@"
fi
}
fn_print_error_nl(){
if [ -n "${commandaction}" ]; then
echo -en "\r[${red} ERROR${default}] ${commandaction} ${servicename}: $@"
echo -en "\r[${red}ERROR ${default}] ${commandaction} ${servicename}: $@"
else
echo -en "\r[${red} ERROR${default}] $@"
echo -en "\r[${red}ERROR ${default}] $@"
fi
sleep 0.5
echo -en "\n"

Loading…
Cancel
Save