X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=bin%2Fbackup-script-wrapper;h=bb9009de65a9b9132ad5921cb6d9f71c6869b233;hb=d4380ed6a2f6be19241f71695a8b42d2eecdb8d7;hp=2f81fa8a69b555a1a6c620956fa59f36423fa136;hpb=4e6a4a0107b7aa47712ffc87af503134e713e2b1;p=backup-script.git diff --git a/bin/backup-script-wrapper b/bin/backup-script-wrapper index 2f81fa8..bb9009d 100755 --- a/bin/backup-script-wrapper +++ b/bin/backup-script-wrapper @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # backup-script system for cloning systems using rsync # Copyright (c)2008-2015 Alexander Barton, alex@barton.de @@ -10,25 +10,55 @@ # Please read the file COPYING, README and AUTHORS for more information. # -[ -n "$MAILTO" ] || MAILTO="logcheck" +if [ -z "$MAILTO" ]; then + if id "logcheck" >/dev/null 2>&1; then + MAILTO="logcheck" + elif fgrep "logcheck:" /etc/aliases >/dev/null 2>&1; then + MAILTO="logcheck" + else + MAILTO="root" + fi +fi NAME="backup-script" -HOST=`hostname` -TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 11 + +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 -echo "$NAME Report" >"$TMP" -echo >>"$TMP" -echo " - Host: `hostname -f`" >>"$TMP" -echo " - User: `id -un`" >>"$TMP" -echo >>"$TMP" +exec >"$TMP" 2>&1 + +echo "$NAME Report" +echo +echo " - Host: `hostname -f`" +echo " - User: `id -un`" +echo + +if echo "$DELIMITER" >>"$LOGFILE" 2>/dev/null; then + echo >>"$LOGFILE" + "$(dirname "$0")/backup-script" "$@" | tee -a "$LOGFILE" + r=${PIPESTATUS[0]} +else + "$(dirname "$0")/backup-script" "$@" + r=$? + echo "(Can't write logfile: \"$LOGFILE\"!)" +fi -"$(dirname "$0")/backup-script" "$@" >>"$TMP" 2>&1 +case "$r" in + 0) + ;; + *) + SUBJECT="$SUBJECT - with ERRORS!" +esac -cat "$TMP" | mail -s "$HOST: $NAME results" "$MAILTO" +cat "$TMP" | mail -s "$HOST: $SUBJECT" "$MAILTO" rm -f "$TMP" +exit $r # -eof-