]> arthur.barton.de Git - backup-script.git/blob - bin/backup-script-wrapper
Streamline and document exit codes
[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
28 PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
29 export PATH
30
31 exec >"$TMP" 2>&1
32
33 echo "$NAME Report"
34 echo
35 echo " - Host: `hostname -f`"
36 echo " - User: `id -un`"
37 echo
38
39 if [ -w "$LOGFILE" ]; then
40         "$(dirname "$0")/backup-script" "$@" | tee -a "$LOGFILE"
41         r=${PIPESTATUS[0]}
42 else
43         "$(dirname "$0")/backup-script" "$@"
44         r=$?
45         echo "(Can't write logfile: \"$LOGFILE\"!)"
46 fi
47
48 cat "$TMP" | mail -s "$HOST: $NAME results" "$MAILTO"
49
50 rm -f "$TMP"
51 exit $r
52
53 # -eof-