humble-homelab/roles/backup/templates/system-email.sh.j2
2024-01-18 21:29:44 +01:00

14 lines
391 B
Django/Jinja

#!/bin/sh
# Tailored to be called as a systemd error notification.
# Inspired by: https://wiki.archlinux.org/title/Systemd/Timers#As_a_cron_replacement
sendmail -t <<ERRMAIL
To: {{ machine_notifications_receiver }}
From: {{ machine_from_email }}
Subject: "$1.service" stumbled
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset=UTF-8
$(systemctl status --full "$1")
ERRMAIL