]> arthur.barton.de Git - backup-script.git/blob - bin/backup-script-wrapper
backup-script-wrapper: Use "exec" to redirect output
[backup-script.git] / bin / backup-script-wrapper
1 #!/bin/sh
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 11
26
27 PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
28 export PATH
29
30 exec >"$TMP" 2>&1
31
32 echo "$NAME Report"
33 echo
34 echo " - Host: `hostname -f`"
35 echo " - User: `id -un`"
36 echo
37
38 "$(dirname "$0")/backup-script" "$@"
39
40 cat "$TMP" | mail -s "$HOST: $NAME results" "$MAILTO"
41
42 rm -f "$TMP"
43
44 # -eof-