]> arthur.barton.de Git - backup-script.git/blob - bin/backup-script-wrapper
backup-script-wrapper: Better detect default mail recipient
[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 echo "$NAME Report" >"$TMP"
31 echo >>"$TMP"
32 echo " - Host: `hostname -f`" >>"$TMP"
33 echo " - User: `id -un`" >>"$TMP"
34 echo >>"$TMP"
35
36 "$(dirname "$0")/backup-script" "$@" >>"$TMP" 2>&1
37
38 cat "$TMP" | mail -s "$HOST: $NAME results" "$MAILTO"
39
40 rm -f "$TMP"
41
42 # -eof-