blob: 7453e832e69fdb41c71f05f9114e530ce4718454 (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
#
# backupninja handler to do incremental backups using
# rsync and hardlinks, based on
#
# http://www.mikerubel.org/computers/rsync_snapshots/
#
# feedback: rhatto at riseup.net | gpl
#
# config file options
# -------------------
#
# [general]
# log = rsync log file
# partition = partition where the backup lives
# fsck = set to 1 if fsck should run on $partition after the backup is made
# read_only = set to 1 if $partition is mounted read-only
# mountpoint = backup partition mountpoint or backup main folder
# backupdir = folder relative do $mountpoint where the backup should be stored
# days = number of backup increments (min = 5)
# lockfile = lockfile to be kept during backup execution
#
# [source]
# include = include folder on backup
# exclude = exclude folder on backup
#
# [services]
# initscripts = absolute path where scripts are located
# service = script name to be stoped at the begining of the backup and started at its end
#
setsection general
getconf log
getconf partition
getconf fsck
getconf read_only
getconf mountpoint
getconf backupdir
getconf rotate
getconf days
getconf lockfile
setsection source
getconf include
getconf exclude
setsection services
getconf initscripts
getconf service
backupdir="$mountpoint/$backupdir"
if [ ! -d "$backupdir" ]; then
error "Backupdir $backupdir does not exist"
exit 1
fi
if [ -z "$days" ]; then
keep="4"
else
keep="`echo $days - 1 | bc -l`"
fi
if [ ! -z "$lockfile" ]; then
touch $lockfile || warning "Could not create lockfile $lockfile"
fi
for path in $exclude; do
EXCLUDES="$EXCLUDES --exclude=$path"
done
if [ ! -z "$service" ]; then
for daemon in $service; do
info "Stopping service $service..."
$initscripts/$service stop
done
fi
function rotate {
# please use an absolute path
if [[ "$2" < 4 ]]; then
error "Rotate: minimum of 4 rotations"
exit 1
fi
if [ -d $1.$2 ]; then
mv $1.$2 $1.tmp
fi
for ((n=`echo "$2 - 1" | bc`; n >= 0; n--)); do
if [ -d $1.$n ]; then
dest=`echo "$n + 1" | bc`
mv $1.$n $1.$dest
touch $1.$dest
fi
done
if [ -d $1.tmp ]; then
mv $1.tmp $1.0
fi
if [ -d $1.1 ]; then
cp -alf $1.1/. $1.0
fi
}
echo "Starting backup at `date`" >> $log
if [ "$read_only" == "1" ] || [ "$read_only" == "yes" ]; then
if [ -d "$mountpoint" ]; then
mount -o remount,rw $mountpoint
if (($?)); then
error "Could not mount $mountpoint"
exit 1
fi
fi
fi
for SECTION in $include; do
if [ ! -d "$backupdir/$SECTION/$SECTION.0" ]; then
mkdir -p $backupdir/$SECTION/$SECTION.0
fi
info "Rotating $backupdir/$SECTION/$SECTION..."
rotate $backupdir/$SECTION/$SECTION $keep
info "Syncing $SECTION on $backupdir/$SECTION/$SECTION.0..."
rsync -av --delete $EXCLUDES /$SECTION/ $backupdir/$SECTION/$SECTION.0/ >> $log
touch $backupdir/$SECTION/$SECTION.0
done
if [ "$read_only" == "1" ] || [ "$read_only" == "yes" ]; then
mount -o remount,ro $mountpoint
fi
if [ "$fsck" == "1" ] || [ "$fsck" == "yes" ]; then
umount $mountpoint
if (($?)); then
warning "Could not umount $mountpoint to run fsck"
else
fsck -v -y $partition >> $log
mount $mountpoint
fi
fi
if [ ! -z "$service" ]; then
for daemon in $service; do
info "Starting service $service..."
$initscripts/$service start
done
fi
if [ ! -z "$lockfile" ]; then
rm lockfile || warning "Could not remove lockfile $lockfile"
fi
echo "Finnishing backup at `date`" >> $log
|