add tests and move scripts

このコミットが含まれているのは:
Simon Vieille 2019-06-12 13:12:53 +02:00
コミット c006bbdd30
署名者: deblan
GPGキーID: 03383D15A1D31745
2個のファイルの変更29行の追加0行の削除

22
generators/email 実行可能ファイル
ファイルの表示

@ -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 実行可能ファイル
ファイルの表示

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