#!/bin/sh # # backup-script system for cloning systems using rsync # Copyright (c)2008-2013 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 # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # MAILTO="logcheck" NAME="backup-script" HOST=`hostname` TMP="/tmp/$NAME.$$" PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" export PATH `dirname "$0"`/backup-script $* >>$TMP 2>&1 cat $TMP | mail -s "$HOST: $NAME results" "$MAILTO" rm -f $TMP # -eof-