X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=bin%2Fbackup-script-wrapper;h=8d160e494ee09705725589401f06b7a042bb19e5;hb=19d844c6b25cc2f63cd4633d31b1af50dcd468f6;hp=8ae3fc800e695461ac587366c3a3acea327cd5b8;hpb=e98192a7f819daa06b50ef681183ab51d04a440f;p=backup-script.git diff --git a/bin/backup-script-wrapper b/bin/backup-script-wrapper index 8ae3fc8..8d160e4 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 @@ -21,8 +21,11 @@ if [ -z "$MAILTO" ]; then fi NAME="backup-script" -HOST=`hostname` -TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 11 +HOST=`hostname -f` +TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 1 +LOGFILE="/var/log/backup-script.log" +DELIMITER="- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -" +SUBJECT="$NAME results" PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" export PATH @@ -35,10 +38,26 @@ echo " - Host: `hostname -f`" echo " - User: `id -un`" echo -"$(dirname "$0")/backup-script" "$@" +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 + +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-