make mail optional

This commit is contained in:
6543 2018-05-17 01:05:56 +02:00
parent 55a17ad2ce
commit ca02c443d3
1 changed files with 18 additions and 15 deletions

View File

@ -4,23 +4,26 @@


#on_exit [error_level] #on_exit [error_level]
function on_exit() { function on_exit() {
#send log and errorlevel[success/errorr xy] ### send mail
[ -n "$log_mail_aim" ] && {
#send log and errorlevel[success/errorr xy]
if [ "$1" != "0" ]; then
log_mail_subject="$log_mail_subject [ERROR]"
else
log_mail_subject="$log_mail_subject [Success]"
fi


if [ "$1" != "0" ]; then #Mail Body:
log_mail_subject="$log_mail_subject [ERROR]" for mail_aim in `echo "$log_mail_aim" | tr "," " "`; do
else {
log_mail_subject="$log_mail_subject [Success]" echo "$log_mail_subject"
fi echo $'####################################################################################\n\n'

cat "$log_file"
#Mail Body: } | sendemail -s "$log_mail_smtp" -f "$log_mail_source" -t "$mail_aim" -u "$log_mail_subject" -o tls=no
for mail_aim in `echo "$log_mail_aim" | tr "," " "`; do done
{ }
echo "$log_mail_subject"
echo $'####################################################################################\n\n'
cat "$log_file"
} | sendemail -s "$log_mail_smtp" -f "$log_mail_source" -t "$mail_aim" -u "$log_mail_subject" -o tls=no
done


### clean up
[ "$1" != "0" ] && { [ "$1" != "0" ] && {
chroot_umount$distro "$chroot_path" 2> /dev/null chroot_umount$distro "$chroot_path" 2> /dev/null
workspace_erase "$iso_extr_dir/" "$chroot_path/" 2> /dev/null workspace_erase "$iso_extr_dir/" "$chroot_path/" 2> /dev/null