#!/bin/bash # LGSM fn_email function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk # Version: 210115 # Description: Sends email notification if monitor picks up a failure. local modulename="Email" fn_printdots "Sending notification to ${email}" fn_details_distro { echo -e "========================================\n${servicename} details\n========================================\n" echo -e "Service: ${servicename}" echo -e "Server: ${servername}" echo -e "Game: ${gamename}" echo -e "Failure reason: ${failurereason}" echo -e "Action Taken: ${actiontaken}\n" echo -e "========================================\nServer details\n========================================\n" echo -e "Date: $(date)" echo -e "Distro: ${os}" echo -e "Arch: ${arch}" echo -e "Kernel: ${kernel}" echo -e "Hostname: $HOSTNAME" echo -e "Uptime: ${days}d, ${hours}h, ${minutes}m" echo -e "Avg Load${load}\n" echo -e "========================================\nLogs\n========================================\n" echo -e "Script log\n===================\n" fn_details }|tee "${scriptlogdir}/${servicename}-email.log" > /dev/null 2>&1 tail -25 "${scriptlog}" >> "${emaillog}" if [ ! -z "${consolelog}" ]; then echo -e "\n\nConsole log\n====================\n" >> "${emaillog}" tail -25 "${consolelog}" >> "${emaillog}" fi if [ ! -z "${gamelogdir}" ]; then echo -e "\n\nServer log\n====================\n" >> "${emaillog}" tail "${gamelogdir}"/*|grep -v "==>"|sed '/^$/d'|tail -25 >> "${emaillog}" fi mail -s "${subject}" ${email} < "${emaillog}" fn_printok "Sending notification to ${email}" fn_scriptlog "Sent notification to ${email}" sleep 1 echo -en "\n"