-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqback.sh
executable file
·433 lines (319 loc) · 10.1 KB
/
qback.sh
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
#!/bin/bash
### DEBUG: Enable echoing of commands
#set -x
#################################################################
### NAS-to-storage server backup script
###
### Script stores incremental backups in dated directories
###
### Written by Joern Stein <[email protected]> 2014-2022
#################################################################
# Get timestamp for the log files
currDate=`date +%Y%m%d-%H%M`
shares=""
target=""
config=""
fail=0
# The root directory where all shares are on the NAS
source="/share"
store=""
tmpTarget=""
config=""
### Parameters
# Prepare everything and run rsync in dryrun mode
DRYRUN=""
# Do not make any modifications on the disk at all
SUPERDRY=""
# Delete non-existing files from a previous run from __cur directory
DELETE=""
# Run rsync as root - make sure /etc/sudoers is configured accrdingly
SUDO=""
# Local rsync command to use
RSYNC="rsync"
# Local grep command
GREP="grep"
# Local ssh command
SSH=""
###
flags="-vrltD"
ignorePerms=""
# "--no-perms --no-owner --no-group --no-times"
usage() {
cat << EOT
$0 - Backup some directories to a backup path
This script is intended to backup shares on a QNAP server to some external
storage, e.g. an attached disk. On the backup target disk there must be a
directory called '.config' which holds these files:
shares - the list of shares to backup, excluding the leading '/share/'
exclude - List of files to exclude from the backup
share.preflight - bash script that will be run before backing up share 'share'
share.postflight - bash script that will be run after backing up share 'share'
Information about the shares to be backed up is stored in these two files. A new
directory 'store' will be created on the backup disk to store the backed up shares.
All shares will be backed up first to a temporary directory names '__cur' in the
storage area. When the backup has completed successfully, it will be renamed to
the date and time of running the script.
If a shares was backed up in earlier backups, all unchanged files will be hardlinked
against the latest of these backups. A share can also be configured to be mirrored
instead of this incremental backup by setting the 'type' column in the 'shares'
file to '1' - these mirrored backups are stored in the '_mirror' subdirectory.
Usage:
$0 [ --dryrun | -d | -dd | --superdry | --delete ] BackupPath1 [ BackupPath2 ... ]
-dd, --superdry Go through the backup process without actually changing anything
-d, --dryrun Make only necessary changes to run 'rsync --dry-run', do not copy data
--delete Add '--delete' option to rsync, removing stuff from __cur directory
--sudo Run rsync commands as root
--rsync="/path/to/rsync" Specify custom rsync command
--ssh="/path/to/ssh" Specify custom ssh command
--grep="/path/to/grep" Specify custom grep command
BackupPath List of one or more directories where backups are stored
Format of 'shares' file:
# share,source,type,subdir,remoteRsyncPath
# \_ Custom rsync executable on the remote host
# \_________ Subdirectory where the share should be backed up to. Must
# not be in the list of share names
# \______________ 0 or "" for incremental backups, m or 1 for mirror
# \_____________________ Where to find the original, can be /share or user@host:/path
# \___________________________ Name of the folder to backup
Media
homes,[email protected]:
vmail,root@mailserver:/var,1,mail
docker,docker@host,,,sudo /opt/bin/rsync
In this example, in the backup, there will be folders 'Media', 'homes', 'vmail' and 'docker'.
If no source path is given, the share will be copied from '/share'.
If the source path is given as 'user@host:/path', it is possible to pull a backup
from a remote QNAP server. Remember that the user must be an administrator, otherwise
the NAS will not allow the necessary SSH access. It is advised to setup ssh keys
to avoid having to enter the password for every backed up share.
When specifying a custom rsync command with 'sudo', make sure that the user has the right
to run the command without entering a password, e.g.
EOT
}
checkIfRunning() {
# First check if backup process is running
PIDFILE="$0.__PID__"
if [ -f "$PIDFILE" ]
then
PID="$(cat ${PIDFILE})"
PROC=`basename $0`
echo "Checking PIDFILE $PIDFILE for PID $PID / $PROC"
if (ps -e -o pid,comm | $GREP -P "^\s*$PID +$PROC" )
then
echo \*\*\* backup.sh script is still running.
echo `ps -e -o pid,comm | grep "$PROC" | grep -v grep`
exit 1
fi
fi
echo My process: $$
echo $$ > "${PIDFILE}"
}
backupToDrive() {
dr=$1
shift
echo "=== Backup target: $dr"
config="$dr/.config"
store="$dr/store"
if [ ! -d "$config" ]
then
echo "Configuration directory $config is missing"
return
fi
if [ ! -f "$config/shares" ]
then
echo "No shares to backup defined in $config/shares"
return
fi
# Collected result code of the rsync commands
backupResult=0
# Parse each line in the shares file
input="$config/shares"
while IFS="," read -u 9 -r share source type subdir rsyncPath
do
if [ -z "$source" ]
then
source="/share"
fi
case $type in
1 | m | mirror)
type="1"
;;
*)
type="0"
;;
esac
# Remove leading and trailing spaces
share=$(echo "$share" | sed 's:^/*::' | sed 's:/*$::')
# subdir should be "" or "/path"
subdir=$(echo "$subdir" | sed 's:^/*::' | sed 's:/*$::')
[ -n "$subdir" ] && subdir="/$subdir"
[ -n "$rsyncPath" ] && rsyncPath="--rsync-path=$rsyncPath"
# echo "Share: $share, Source: $source, type: $type, subdir: $subdir, rsyncPath: $rsyncPath"
backupShare "$share" "$source" "$type" "$subdir" "$rsyncPath"
backupResult=$(($backupResult+$?))
done 9< <($GREP -P -v '^\s*#' "$input")
if [ $backupResult -eq 0 ]
then
tmpTarget="$store/__cur"
echo "=== Moving temporary target $tmpTarget to $store/$currDate"
[ -z "$DRYRUN" ] && mv "$tmpTarget" "$store/$currDate"
fi
echo "Backup to drive $dr finished with exit code $backupResult"
return $backupResult
}
backupShare() {
share=$1
source=$2
type=$3
subdir=$4
rsyncPath=$5
# echo backup: $share, Source: $source, type: $type, subdir: $subdir
if [ -z "$share" ]
then
echo "--- Share '$share' undefined"
return 0
fi
if (echo $share | grep '/')
then
echo ERROR: '/' in share name is not supported
return 1
fi
# The source could be a network address (user@host:path)
# if [ ! -d "$source/$share/" ]
# then
# echo "ERROR: Share '$source/$share' is not a directory"
# return 1
# fi
echo "========================================================"
echo "== $share"
if [ -f "$config/exclude" ]
then
excludes="--exclude-from=$config/exclude"
else
excludes=""
fi
if [ "$type" == "1" ]
then
# Mirroring requested
linkDir=""
target="$store/_mirror$subdir"
else
# Check if a previous backup exists which can be used to link against
# Bei Sortierung nach Datum: ls -dtr
# Sortierung nach Verzeichnidsname: ls -d
linkDir=`ls -d $store/2*$subdir/$share 2>/dev/null | tail -1 `
echo "== Link against: $linkDir"
[ $n "$linkDir" ] && linkDir="--link-dest=$linkDir/"
# Create a temporary backup directory if it does not exist yet
target="$store/__cur$subdir"
fi
# echo "== '$source/$share' -> '$target/$share'"
# Create a temporary backup directory if it does not exist yet
[ -d "$target" ] || [ -n "$SUPERDRY" ] || mkdir -p "$target"
# Run the preflight script if it exists
preflight="$config/$share.preflight"
if [ -f "$preflight" -a -x "$preflight" ]
then
echo "== Running preflight script $preflight"
[ -z "$SUPERDRY" ] && $preflight
fi
echo $SUDO $RSYNC $flags $SSH $rsyncPath --stats $DRYRUN $DELETE $ignorePerms $excludes $linkDir "$source/$share/" "$target/$share/"
fail=0
if [ -z "$SUPERDRY" ]
then
$SUDO $RSYNC $flags $SSH $rsyncPath --stats $DRYRUN $DELETE $ignorePerms $excludes $linkDir "$source/$share/" "$target/$share/"
[ $? -ne 0 ] && fail=1
fi
# Run the postflight script if it exists
postflight="$config/$share.postflight"
if [ -f "$postflight" -a -x "$postflight" ]
then
echo "== Running postflight script $postflight"
[ -z "$SUPERDRY" ] && $postflight
fi
# return the result code from the rsync operation
echo "Backing up share $share finished with exit code $fail"
return $fail
}
echo "=== Parsing parameters"
drives=""
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
while [ "$1" != "" ]; do
PARAM=`echo "$1" | awk -F= '{print $1}'`
VALUE=`echo "$1" | awk -F= '{print $2}'`
# echo "\$1: '$1', PARAM='$PARAM', VALUE='$VALUE'"
case $PARAM in
-h | --help)
usage
exit 1
;;
-dd | --superdry)
SUPERDRY="1"
DRYRUN="--dry-run"
;;
-d | --dryrun)
DRYRUN="--dry-run"
;;
--delete)
DELETE="--delete"
;;
--sudo)
SUDO="sudo"
;;
--rsync)
[ -x "$VALUE" ] && RSYNC="$VALUE"
;;
--grep)
[ -x "$VALUE" ] && GREP="$VALUE"
;;
--ssh)
SSH="-e $VALUE"
;;
*)
if [ -d "$1" ]
then
dr=$(echo $1 | sed 's:/*$::')
if [ -z $drives ]
then
drives="$dr"
else
drives="${drives}${IFS}${dr}"
fi
else
echo "ERROR: Unknown parameter '${1}'"
usage
exit 1
fi
;;
esac
shift
done
echo "=== Checking if backup is already running"
checkIfRunning
# DEBUG
#echo "DRYRUN: '$DRYRUN'"
#echo "SUPERDRY: '$SUPERDRY'"
#echo "DRIVES: '$drives'"
#echo "SUDO: $SUDO"
#echo "RSYNC: '$RSYNC'"
#echo "GREP: '$GREP'"
#echo "SSH: '$SSH'"
if [ -z "$drives" ]
then
echo "ERROR: No backup targets specified"
usage
exit 1
fi
retval=0
# Loop through all the backup targets given on the command line
for drive in $drives
do
backupToDrive $drive
retval=$(($retval+$?))
echo Free space on backup drive
df -k | grep "$(readlink -f "$drive")"
done
IFS=$SAVEIFS
endDate=`date +%Y%m%d-%H%M`
echo === Backup finished $endDate with exit code $retval
exit $retval