Browse Source

Backward compatibility

pull/820/merge
Daniel Gibbs 9 years ago
parent
commit
fdd4a72b89
  1. 2
      lgsm/functions/alert.sh
  2. 10
      lgsm/functions/alert_email.sh
  3. 2
      lgsm/functions/command_test_alert.sh

2
lgsm/functions/alert.sh

@ -6,7 +6,7 @@ lgsm_version="140516"
# Description: Overall function for managing alerts. # Description: Overall function for managing alerts.
if [ "${emailalert}" == "on" ]||[ -n "${email}" ]; then if [ "${emailnotification}" == "on" ]||[ "${emailalert}" == "on" ]&&[ -n "${email}" ]; then
alert_email.sh alert_email.sh
fi fi

10
lgsm/functions/alert_email.sh

@ -39,7 +39,7 @@ fn_details_os(){
echo -e "Hostname: $HOSTNAME" echo -e "Hostname: $HOSTNAME"
echo -e "tmux: ${tmuxv}" echo -e "tmux: ${tmuxv}"
echo -e "GLIBC: ${glibcversion}" echo -e "GLIBC: ${glibcversion}"
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" } | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1
} }
fn_details_performance(){ fn_details_performance(){
@ -63,7 +63,7 @@ fn_details_performance(){
echo -e "Mem: total used free" echo -e "Mem: total used free"
echo -e "Physical: ${physmemtotal} ${physmemused} ${physmemfree}" echo -e "Physical: ${physmemtotal} ${physmemused} ${physmemfree}"
echo -e "Swap: ${swaptotal} ${swapused} ${swapfree}" echo -e "Swap: ${swaptotal} ${swapused} ${swapfree}"
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" } | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1
} }
fn_details_disk(){ fn_details_disk(){
@ -88,7 +88,7 @@ fn_details_disk(){
if [ -d "${backupdir}" ]; then if [ -d "${backupdir}" ]; then
echo -e "Backups: ${backupdirdu}" echo -e "Backups: ${backupdirdu}"
fi fi
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" } | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1
} }
@ -165,7 +165,7 @@ fn_details_gameserver(){
else else
echo -e "Status: ONLINE" echo -e "Status: ONLINE"
fi fi
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" } | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1
} }
fn_alert_email_template_logs(){ fn_alert_email_template_logs(){
@ -211,7 +211,7 @@ fn_alert_email_template_logs(){
echo "" echo ""
fi fi
} | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" } | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"| tee -a "${emaillog}" > /dev/null 2>&1
} }
fn_print_dots "Sending alert to ${email}" fn_print_dots "Sending alert to ${email}"

2
lgsm/functions/command_test_alert.sh

@ -13,7 +13,7 @@ check.sh
info_config.sh info_config.sh
if [ "${emailalert}" = "on" ]||[ "${pushbulletalert}" = "on" ]; then if [ "${emailalert}" = "on" ]||[ "${pushbulletalert}" = "on" ]; then
fn_scriptlog "Sending alert Check" fn_scriptlog "Sending alert Check"
alertsubject="LGSM - alert Check - ${servername}" alertsubject="LGSM - Alert Check - ${servername}"
alertbody="LGSM testing alert, how you read?" alertbody="LGSM testing alert, how you read?"
alert.sh alert.sh
else else

Loading…
Cancel
Save