X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=bin%2Fbackup-script-wrapper;h=bb9009de65a9b9132ad5921cb6d9f71c6869b233;hb=d4380ed6a2f6be19241f71695a8b42d2eecdb8d7;hp=047ff96395705c71ea4ebaa71d2e49680f68e7aa;hpb=2d95d80b5fc36b694f672f25ab3ba8f49bbfc713;p=backup-script.git diff --git a/bin/backup-script-wrapper b/bin/backup-script-wrapper index 047ff96..bb9009d 100755 --- a/bin/backup-script-wrapper +++ b/bin/backup-script-wrapper @@ -21,10 +21,12 @@ if [ -z "$MAILTO" ]; then fi NAME="backup-script" -HOST=`hostname` -TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 1 -LOGFILE="/var/log/backup-script.log" + DELIMITER="- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -" +HOST=`hostname -f` +LOGFILE="/var/log/$NAME.log" +SUBJECT="$NAME results" +TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 1 PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" export PATH @@ -47,7 +49,14 @@ else echo "(Can't write logfile: \"$LOGFILE\"!)" fi -cat "$TMP" | mail -s "$HOST: $NAME results" "$MAILTO" +case "$r" in + 0) + ;; + *) + SUBJECT="$SUBJECT - with ERRORS!" +esac + +cat "$TMP" | mail -s "$HOST: $SUBJECT" "$MAILTO" rm -f "$TMP" exit $r