]> arthur.barton.de Git - backup-script.git/blob - bin/backup-script-wrapper
047ff96395705c71ea4ebaa71d2e49680f68e7aa
[backup-script.git] / bin / backup-script-wrapper
1 #!/bin/bash
2 #
3 # backup-script system for cloning systems using rsync
4 # Copyright (c)2008-2015 Alexander Barton, alex@barton.de
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 # Please read the file COPYING, README and AUTHORS for more information.
11 #
12
13 if [ -z "$MAILTO" ]; then
14         if id "logcheck" >/dev/null 2>&1; then
15                 MAILTO="logcheck"
16         elif fgrep "logcheck:" /etc/aliases >/dev/null 2>&1; then
17                 MAILTO="logcheck"
18         else
19                 MAILTO="root"
20         fi
21 fi
22
23 NAME="backup-script"
24 HOST=`hostname`
25 TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 1
26 LOGFILE="/var/log/backup-script.log"
27 DELIMITER="- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -"
28
29 PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
30 export PATH
31
32 exec >"$TMP" 2>&1
33
34 echo "$NAME Report"
35 echo
36 echo " - Host: `hostname -f`"
37 echo " - User: `id -un`"
38 echo
39
40 if echo "$DELIMITER" >>"$LOGFILE" 2>/dev/null; then
41         echo >>"$LOGFILE"
42         "$(dirname "$0")/backup-script" "$@" | tee -a "$LOGFILE"
43         r=${PIPESTATUS[0]}
44 else
45         "$(dirname "$0")/backup-script" "$@"
46         r=$?
47         echo "(Can't write logfile: \"$LOGFILE\"!)"
48 fi
49
50 cat "$TMP" | mail -s "$HOST: $NAME results" "$MAILTO"
51
52 rm -f "$TMP"
53 exit $r
54
55 # -eof-