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