-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrotate_daily_snapshots.sh
executable file
·72 lines (61 loc) · 2.39 KB
/
rotate_daily_snapshots.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
#!/bin/bash
# ----------------------------------------------------------------------
# mikes handy rotating-filesystem-snapshot utility: daily snapshots
# ----------------------------------------------------------------------
# intended to be run daily as a cron job when hourly.3 contains the
# midnight (or whenever you want) snapshot; say, 13:00 for 4-hour snapshots.
# ----------------------------------------------------------------------
unset PATH
CWD=`dirname $(realpath $0)`
source $CWD/backup.config;
# ------------- the script itself --------------------------------------
$TOUCH $DIAGNOSTICLOG;
$ECHO "$($DATE) - DAILY ROTATION STARTED" >> $DIAGNOSTICLOG;
# make sure we're running as root
if (( `$ID -u` != 0 )); then { $ECHO "$($DATE) - Sorry, must be root. Exiting..."; >> $DIAGNOSTICLOG; exit 1; } fi
# attempt to remount the RW mount point as RW; else abort
$MOUNT -o remount,rw $MOUNT_DEVICE $SNAPSHOT_RW ;
if (( $? )); then
{
$ECHO "$($DATE) - snapshot: could not remount $SNAPSHOT_RW readwrite" >> $DIAGNOSTICLOG;
exit;
}
fi;
# step 1: delete the oldest snapshot, if it exists:
if [ -d $SNAPSHOT_RW/daily.6 ] ; then \
$RM -rf $SNAPSHOT_RW/daily.6 ; \
fi ;
# step 2: shift the middle snapshots(s) back by one, if they exist
if [ -d $SNAPSHOT_RW/daily.5 ] ; then \
$MV $SNAPSHOT_RW/daily.5 $SNAPSHOT_RW/daily.6 ; \
fi;
if [ -d $SNAPSHOT_RW/daily.4 ] ; then \
$MV $SNAPSHOT_RW/daily.4 $SNAPSHOT_RW/daily.5 ; \
fi;
if [ -d $SNAPSHOT_RW/daily.3 ] ; then \
$MV $SNAPSHOT_RW/daily.3 $SNAPSHOT_RW/daily.4 ; \
fi;
if [ -d $SNAPSHOT_RW/daily.2 ] ; then \
$MV $SNAPSHOT_RW/daily.2 $SNAPSHOT_RW/daily.3 ; \
fi;
if [ -d $SNAPSHOT_RW/daily.1 ] ; then \
$MV $SNAPSHOT_RW/daily.1 $SNAPSHOT_RW/daily.2 ; \
fi;
if [ -d $SNAPSHOT_RW/daily.0 ] ; then \
$MV $SNAPSHOT_RW/daily.0 $SNAPSHOT_RW/daily.1; \
fi;
# step 3: make a hard-link-only (except for dirs) copy of
# hourly.3, assuming that exists, into daily.0
if [ -d $SNAPSHOT_RW/hourly.3 ] ; then \
$CP -al $SNAPSHOT_RW/hourly.3 $SNAPSHOT_RW/daily.0 ; \
fi;
# note: do *not* update the mtime of daily.0; it will reflect
# when hourly.3 was made, which should be correct.
# now remount the RW snapshot mountpoint as readonly
$MOUNT -o remount,ro $MOUNT_DEVICE $SNAPSHOT_RW ;
if (( $? )); then
{
$ECHO "$($DATE) - snapshot: could not remount $SNAPSHOT_RW readonly" >> $DIAGNOSTICLOG;
exit;
} fi;
$ECHO "$($DATE) - DAILY ROTATION FINISHED" >> $DIAGNOSTICLOG;