forked from bit-team/user-callback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-callback.sendmail
executable file
·61 lines (55 loc) · 1.91 KB
/
user-callback.sendmail
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
# Copyright (c) 2012-2014 Germar Reitze
#
# 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.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#Script should return 0 if everything is alright. Returncode !0 will cancle
#the running snapshot (BIT version >1.1.0).
email="foo@bar"
profile_id="$1"
profile_name="$2"
reason="$3"
errorcode="$4"
function send_mail {
subject="Backintime $profile_name: $1"
shift
echo -e "$(date) \n$@" #| mail -s $subject $email
}
function log_id {
if [ $profile_id -gt 1 ]; then
echo $profile_id
else
echo ""
fi
}
case $reason in
1) send_mail "Backup process begins"
;;
2) send_mail "Backup process ends" "$(cat ~/.local/share/backintime/takesnapshot_$(log_id).log)"
;;
3) send_mail "A new snapshot was taken"
;;
4) #There was an error
case $errorcode in
1) send_mail "ERROR" "The application is not configured"
;;
2) send_mail "ERROR" "A 'take snapshot' process is already running"
;;
3) send_mail "ERROR" "Can't find snapshots folder (is it on a removable drive ?)"
;;
4) send_mail "ERROR" "A snapshot for 'now' already exist"
;;
esac
;;
esac