X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=bin%2Fbackup-script-wrapper;h=925be37c958463a0500274eaefd0df2499f86a2f;hb=1f1ac2b2ee66b81a086c3153fb8c001bc1ef0a12;hp=bb9009de65a9b9132ad5921cb6d9f71c6869b233;hpb=d4380ed6a2f6be19241f71695a8b42d2eecdb8d7;p=backup-script.git diff --git a/bin/backup-script-wrapper b/bin/backup-script-wrapper index bb9009d..925be37 100755 --- a/bin/backup-script-wrapper +++ b/bin/backup-script-wrapper @@ -1,7 +1,7 @@ #!/bin/bash # # backup-script system for cloning systems using rsync -# Copyright (c)2008-2015 Alexander Barton, alex@barton.de +# Copyright (c)2008-2016 Alexander Barton, alex@barton.de # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,10 +23,10 @@ fi NAME="backup-script" DELIMITER="- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -" -HOST=`hostname -f` +HOST=$(hostname -f) LOGFILE="/var/log/$NAME.log" SUBJECT="$NAME results" -TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 1 +TMP=$(mktemp /tmp/$NAME.XXXXXXXX) || exit 1 PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" export PATH @@ -35,8 +35,11 @@ exec >"$TMP" 2>&1 echo "$NAME Report" echo -echo " - Host: `hostname -f`" -echo " - User: `id -un`" +echo " - Host: $(hostname -f)" +echo " - User: $(id -un)" +echo +echo "Command:" +echo "$0" "$@" echo if echo "$DELIMITER" >>"$LOGFILE" 2>/dev/null; then @@ -56,7 +59,7 @@ case "$r" in SUBJECT="$SUBJECT - with ERRORS!" esac -cat "$TMP" | mail -s "$HOST: $SUBJECT" "$MAILTO" +mail -s "$HOST: $SUBJECT" "$MAILTO" <"$TMP" rm -f "$TMP" exit $r