]> git.llucax.com Git - software/bacap.git/blob - bacap
Fix doc typos
[software/bacap.git] / bacap
1 #!/bin/bash
2
3 #_INCLUDE_START_
4 # Default config values
5
6 # Be verbose
7 VERBOSE=1
8
9 # Be extra verbose
10 DEBUG=0
11
12 # Don't actually do anything, just print the commands
13 DRY_RUN=0
14
15 # Log file (if empty, print to stdout/err)
16 LOG_FILE=
17
18 # Where to find the configuration of the hosts to backup
19 CONFIG_PATH=/etc/bacap/hosts
20
21 # Name of the local host (so no ssh would be used with this host)
22 LOCALHOST=$HOSTNAME
23
24 # Where to put the backups
25 BACKUP_PATH=/backup
26
27 # Date format used for backed up directories (passed to the date command)
28 DATE_FMT="%Y-%m-%d"
29
30 # rsync flags to use
31 RSYNC_FLAGS="-aAXHx --numeric-ids --delete"
32
33 # rsync flags to use when in verbose mode
34 RSYNC_VERBOSE_FLAGS="-v --stats"
35
36 # rsync remote shell to use
37 RSYNC_RSH="ssh -c arcfour -o Compression=no -x"
38
39 #_INCLUDE_END_
40
41 SCRIPT_DIR=$(dirname `readlink -f $0`)
42 BACAPRC=$1
43
44 # Load configuration files
45 load_config() {
46         source "/etc/bacaprc" 2> /dev/null
47         source "/etc/bacap/bacaprc" 2> /dev/null
48         source "$SCRIPT_DIR/bacaprc" 2> /dev/null
49         test -n "$BACAPRC" && source "$BACAPRC"
50 }
51 load_config
52
53 export RSYNC_RSH
54
55 run=
56 [ $DRY_RUN -eq 1 ] &&
57         run=echo
58 [ $VERBOSE -eq 1 ] &&
59         RSYNC_FLAGS="$RSYNC_FLAGS $RSYNC_VERBOSE_FLAGS"
60 [ $DEBUG -eq 1 ] &&
61         V=-v
62 [ -n "$LOG_FILE" ] &&
63         exec 3>&2 &&
64         exec 1>>"$LOG_FILE" &&
65         exec 2>>"$LOG_FILE"
66
67 pout() {
68         echo "$@" >&3
69 }
70
71 plog() {
72         [ $VERBOSE -eq 1 ] &&
73                 echo "$@"
74 }
75
76 perror() {
77         echo "$@" >&2
78 }
79
80 host_up() {
81         ping -c1 "$1" > /dev/null 2>&1
82 }
83
84 date=`date "+$DATE_FMT"`
85 plog
86 plog
87 plog "========================================================================="
88 plog "Starting backup for $date at `date '+%Y-%m-%d %H:%M:%S'`"
89 plog "========================================================================="
90 ret=0
91 for host_path in "$CONFIG_PATH"/*
92 do
93         saved_ret=$ret
94         # Load default config and override config if correspond
95         load_config
96         source "$host_path/bacaprc" 2>/dev/null
97         host=`basename "$host_path"`
98         host_backup_path="$BACKUP_PATH/$host"
99         dst="$BACKUP_PATH/$host/$date"
100         src=`cat "$host_path/paths"`
101         [ "$host" != "$LOCALHOST" ] &&
102                 src=`awk "{print \"$host:\"\\$1}" "$host_path/paths"`
103         exclude="$host_path/excludes"
104         include="$host_path/includes"
105         current_link="$host_backup_path/current"
106         current_dir="$host_backup_path/`readlink \"$current_link\"`"
107         extra_flags=
108         plog "-----------------------------------------------------------------"
109         plog "Backup for host $host"
110         plog "-----------------------------------------------------------------"
111         plog "Source:      $src"
112         plog "Destination: $dst"
113         plog "Last:        $current_dir"
114         plog
115         [ -d "$dst" ] &&
116                 perror "$dst already exists, skipping..." &&
117                 continue
118         ! host_up $host &&
119                 perror "$host is down, skipping..." &&
120                 continue
121         [ -r "$exclude" ] &&
122                 extra_flags="--exclude-from=$exclude --delete-excluded"
123         [ -r "$include" ] &&
124                 extra_flags="$extra_flags --include-from=$include"
125         plog "Rotating backup..."
126         $run cp -al $V "$current_dir" "$dst" ||
127                 ret=$(($ret+1))
128         plog "Running rsync..."
129         $run rsync $RSYNC_FLAGS $extra_flags $src "$dst/" ||
130                 ret=$(($ret+1))
131         plog "Moving current..."
132         $run rm $V "$current_link" ||
133                 ret=$(($ret+1))
134         $run ln -s $V "$date" "$current_link" ||
135                 ret=$(($ret+1))
136         if [ $ret -ne $saved_ret ]
137         then
138                 ERROR_HOSTS="$ERROR_HOSTS $host"
139         fi
140 done
141
142 plog "========================================================================="
143 plog "Backup for $date finished at `date '+%Y-%m-%d %H:%M:%S'`"
144 plog "========================================================================="
145
146 if [ $ret -ne 0 ]
147 then
148         pout "There were some errors when running the backup on: $ERROR_HOSTS"
149         pout
150         pout "Please take a look at the log: $LOG_FILE"
151         pout
152 fi
153
154 exit $ret
155