-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrotate_weekly_snapshots.sh
executable file
·78 lines (61 loc) · 2.49 KB
/
rotate_weekly_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
73
74
75
76
77
#!/bin/bash
# ----------------------------------------------------------------------
# mikes handy rotating-filesystem-snapshot utility: weekly snapshots
# ----------------------------------------------------------------------
# intended to be run weekly as a cron job when daily.6 contains the
# Sunday (or whenever you want) snapshot; say, Monday morning.
# ----------------------------------------------------------------------
export DIRNAME=/usr/bin/dirname;
export REALPATH=/usr/bin/realpath;
unset PATH
CWD=`$DIRNAME $($REALPATH $0)`
source $CWD/backup.config;
# ------------- the script itself --------------------------------------
$TOUCH $DIAGNOSTICLOG;
$ECHO "*****************************************************************************" >> $DIAGNOSTICLOG;
$ECHO "$($DATE) - WEEKLY 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/weekly.4 ] ; then
$RM -rf $SNAPSHOT_RW/weekly.4 ;
fi ;
# step 2: shift the middle snapshots(s) back by one, if they exist
if [ -d $SNAPSHOT_RW/weekly.3 ] ; then
$MV $SNAPSHOT_RW/weekly.3 $SNAPSHOT_RW/weekly.4 ;
fi;
if [ -d $SNAPSHOT_RW/weekly.2 ] ; then
$MV $SNAPSHOT_RW/weekly.2 $SNAPSHOT_RW/weekly.3 ;
fi;
if [ -d $SNAPSHOT_RW/weekly.1 ] ; then
$MV $SNAPSHOT_RW/weekly.1 $SNAPSHOT_RW/weekly.2 ;
fi;
if [ -d $SNAPSHOT_RW/weekly.0 ] ; then
$MV $SNAPSHOT_RW/weekly.0 $SNAPSHOT_RW/weekly.1;
fi;
# step 3: make a hard-link-only (except for dirs) copy of
# daily.1, assuming that exists, into weekly.0
if [ -d $SNAPSHOT_RW/daily.1 ] ; then
$CP -al $SNAPSHOT_RW/daily.1 $SNAPSHOT_RW/weekly.0 ;
fi;
# note: do *not* update the mtime of weekly.0; it will reflect
# when daily.1 was made, which should be correct.
# Update the bare-metal backup media set
mondoarchive -OVn nfs://10.20.30.60:/mainbackup -I / -E "/nas|/home/scott/Dropbox" -T /tmp -9 -D
# 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) - WEEKLY ROTATION FINISHED" >> $DIAGNOSTICLOG;