]> git.treefish.org Git - backmeupscotty.git/blob - backmeupscotty
7a76c15468e6fe0c0b49197e028c279e5c572c36
[backmeupscotty.git] / backmeupscotty
1 #!/bin/bash
2
3 REMOTE_HOST=localhost
4 REMOTE_BASE=/tmp/backmeupscotty
5 ARCHIVE_KEEPNBACKUPS=30
6 ARCHIVE_KEEPNDAYS=30
7 BACKUP_RUNEVERYNTHDAY=1
8
9 function upperme {
10     echo $(basename $0) | tr '[:lower:]' '[:upper:]'
11 }
12
13 function scottyinfo {
14     echo $(upperme): $@ 
15 }
16
17 function scottyerror {
18     echo $(upperme): $@ >&2 
19 }
20
21 if [ $(pidof -x $(basename $0) | wc -w) -gt 2 ]; then 
22     scottyerror Another instance of $(basename $0) is already running!
23     exit 1
24 fi
25
26 while getopts "qn:" opt; do
27     case $opt in
28         q)
29             exec > /dev/null
30             ;;
31         n)
32             BACKUP_RUNEVERYNTHDAY=$OPTARG
33             ;;
34     esac
35 done
36
37 function grepbackups {
38     ssh $REMOTE_HOST "ls $REMOTE_BASE/$1" | grep -E '[0-9]+-[0-9]+'
39 }
40
41 function isIncomplete {
42     if ( ssh $REMOTE_HOST '[ -d '$REMOTE_BASE/$1/incomplete' ]' ); then
43         return 0
44     else
45         return 1
46     fi
47 }
48
49 function isIncompleteOrNthDay {
50     if isIncomplete $1 || \
51         [ $(( ( $(date +%s) / (60*60*24) ) % $BACKUP_RUNEVERYNTHDAY )) -eq 0 ]; 
52     then
53         return 0
54     else
55         return 1
56     fi
57         
58 }
59
60 function scottysync {
61     timestamp=$(date +%s)
62
63     scottyinfo Syncing $1 to $REMOTE_HOST:$REMOTE_BASE/$2 @$timestamp
64
65     if [ ! -d "$1" ]; then
66         scottyerror Source dir $1 does not exist. Not syncing!
67         return 1
68     fi
69
70     if [ $(ls -A "$1" | wc -l) -eq 0 ]; then
71         scottyerror Source dir $1 is empty. Not syncing!
72         return 1
73     fi
74
75     dir_current=$REMOTE_BASE/$2/current
76     dir_incomplete=$REMOTE_BASE/$2/incomplete
77     dir_timestamped=$REMOTE_BASE/$2/$timestamp-$(date -d @$timestamp +%Y%m%d%H%M%S)
78
79     if [ -z $3 ]; then
80         rsync_exclude=""
81     else
82         rsync_exclude=$(eval echo --exclude={$3} | tr -d {})
83     fi
84
85     if (ssh $REMOTE_HOST '[ ! -d '$REMOTE_BASE/$2' ]'); then
86         scottyinfo Creating destination directory $REMOTE_HOST:$REMOTE_BASE/$2
87         ssh $REMOTE_HOST "mkdir $REMOTE_BASE/$2"
88     fi
89
90     if isIncomplete $2; then
91         scottyerror Continuing old incomplete backup
92     fi
93
94     scottyinfo Starting rsync
95     rsync -e ssh \
96         -v -aHAX --numeric-ids --delete --delete-excluded \
97         --link-dest=$dir_current \
98         $rsync_exclude \
99         $1/ $REMOTE_HOST:$dir_incomplete/
100     
101     if [ $? -eq 0 ]; then
102         scottyinfo Timestamping completed backup and linking to current backup
103         ssh $REMOTE_HOST \
104             "mv $dir_incomplete $dir_timestamped && rm -f $dir_current && ln -s $(basename $dir_timestamped) $dir_current"
105     fi
106
107     while [ $(grepbackups $2 | wc -l) -gt $ARCHIVE_KEEPNBACKUPS ]; do
108         oldestbackup=$(grepbackups $2 | head -1)
109         oldestbackuptstamp=$(echo $oldestbackup | cut -d'-' -f1)
110
111         if [ $oldestbackuptstamp -lt $(( $(date +%s) - $ARCHIVE_KEEPNDAYS*60*60*24 )) ]; then
112             scottyinfo Removing old backup $oldestbackup
113             ssh $REMOTE_HOST rm -r "$REMOTE_BASE/$2/$oldestbackup"
114         else
115             break
116         fi
117     done
118 }