add tests and move scripts

Este commit está contenido en:
Simon Vieille 2019-06-12 13:12:53 +02:00
padre 1e2d5f1cd8
commit c006bbdd30
Firmado por: deblan
ID de clave GPG: 03383D15A1D31745
Se han modificado 2 ficheros con 29 adiciones y 0 borrados

22
generators/email Archivo ejecutable
Ver fichero

@ -0,0 +1,22 @@
#!/bin/sh
. ./helpers/template
export BOUNDARY="-$(date | md5sum | cut -d ' ' -f 1)"
(
render_template mail
if [ -n "$MUNIN_DIRECTORY" -a -d "$MUNIN_DIRECTORY" ]; then
cd "$MUNIN_DIRECTORY"
for file in *day.png; do
export file
export base64="$(base64 "$file")"
render_template mail-png-attachment
done
fi
printf "\n--%s--\n" "$BOUNDARY"
) | sendmail "$EMAIL_RECIPIENT"

7
generators/html Archivo ejecutable
Ver fichero

@ -0,0 +1,7 @@
#!/bin/sh
. ./helpers/template
export content="$REPORT"
render_template plain > "$HTML_OUTPUT"