tests: update expect file for u_direct_io
[e2fsprogs.git] / scrub / e2scrub_fail.in
blob2c0754a9965c09c145b070ec881b548e5136c1c1
1 #!/bin/bash
3 # Email logs of failed e2scrub unit runs when the systemd service fails.
5 device="$1"
6 test -z "${device}" && exit 0
8 if ! type sendmail > /dev/null 2>&1; then
9 echo "$0: sendmail program not found."
10 exit 1
13 if test -f /etc/e2scrub.conf ; then
14 . /etc/e2scrub.conf
17 hostname="$(hostname -f 2>/dev/null)"
18 test -z "${hostname}" && hostname="${HOSTNAME}"
19 service_name="e2scrub@$(systemd-escape ${device})"
21 if test -z "${recipient}" ; then
22 recipient="root"
25 if test -z "${sender}" ; then
26 sender="<e2scrub@${hostname}>"
29 (cat << ENDL
30 To: ${recipient}
31 From: ${sender}
32 Subject: e2scrub failure on ${device}
34 So sorry, the automatic e2scrub of ${device} on ${hostname} failed.
36 A log of what happened follows:
37 ENDL
38 systemctl status --full --lines 4294967295 "${service_name}") | sendmail -t -i